-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jul 14, 2026 at 02:06 AM
-- Server version: 11.4.12-MariaDB-cll-lve-log
-- PHP Version: 8.4.22

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_essie`
--

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

--
-- Table structure for table `wpe_commentmeta`
--

CREATE TABLE `wpe_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 `wpe_comments`
--

CREATE TABLE `wpe_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 `wpe_comments`
--

INSERT INTO `wpe_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-07-11 05:37:19', '2026-07-11 05:37:19', '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 `wpe_e_events`
--

CREATE TABLE `wpe_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 `wpe_e_notes`
--

CREATE TABLE `wpe_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 `wpe_e_notes_users_relations`
--

CREATE TABLE `wpe_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 `wpe_e_submissions`
--

CREATE TABLE `wpe_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 `wpe_e_submissions_actions_log`
--

CREATE TABLE `wpe_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 `wpe_e_submissions_values`
--

CREATE TABLE `wpe_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 `wpe_links`
--

CREATE TABLE `wpe_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 `wpe_litespeed_url`
--

CREATE TABLE `wpe_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 `wpe_litespeed_url_file`
--

CREATE TABLE `wpe_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 `wpe_options`
--

CREATE TABLE `wpe_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 `wpe_options`
--

INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:14:{i:1784009682;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:1784011039;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:1784011040;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:1784012839;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:1784014639;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:1784050673;a:1:{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:1784062142;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:1784093840;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:1784093873;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1784093875;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:1784093910;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:1784353104;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:1784439440;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/essie', 'on'),
(3, 'home', 'https://mrarif.me/essie', 'on'),
(4, 'blogname', 'Essie', '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:143:{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:42:\"e_global_class/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e_global_class/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e_global_class/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e_global_class/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e_global_class/([^/]+)/embed/?$\";s:47:\"index.php?e_global_class=$matches[1]&embed=true\";s:35:\"e_global_class/([^/]+)/trackback/?$\";s:41:\"index.php?e_global_class=$matches[1]&tb=1\";s:43:\"e_global_class/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&paged=$matches[2]\";s:50:\"e_global_class/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&cpage=$matches[2]\";s:39:\"e_global_class/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e_global_class=$matches[1]&page=$matches[2]\";s:31:\"e_global_class/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e_global_class/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e_global_class/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e_global_class/[^/]+/([^/]+)/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:80:\"/home/mrarqpph/public_html/essie/wp-content/themes/astra-child/css/overwrite.css\";i:1;s:72:\"/home/mrarqpph/public_html/essie/wp-content/themes/astra-child/style.css\";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', '61833', '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', '169', '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', '1799300239', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'wp_notes_notify', '1', 'on'),
(102, 'initial_db_version', '60717', 'on'),
(103, 'wpe_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_update_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";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:38:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:9:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(104, 'fresh_site', '0', 'off'),
(105, 'user_count', '1', 'off'),
(106, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(107, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(287, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(108, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(122, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'on'),
(988, '_transient_timeout_elementor_rollback_versions_4.1.4', '1784374002', 'off'),
(1003, 'elementor_maintenance_mode_exclude_roles', 'a:0:{}', 'auto'),
(1004, 'elementor_maintenance_mode_template_id', '', 'auto'),
(1467, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783975742;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.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.8\";}s:15:\"worker/init.php\";O:8:\"stdClass\":10:{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.34\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/worker/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/worker.4.9.34.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:41:\"powerpack-elements/powerpack-elements.php\";O:8:\"stdClass\":17:{s:11:\"new_version\";s:6:\"2.13.5\";s:14:\"stable_version\";s:6:\"2.13.5\";s:4:\"name\";s:18:\"PowerPack Elements\";s:4:\"slug\";s:18:\"powerpack-elements\";s:3:\"url\";s:71:\"https://powerpackelements.com/downloads/powerpack-elements/?changelog=1\";s:12:\"last_updated\";s:19:\"2026-07-02 06:39:35\";s:8:\"homepage\";s:29:\"https://powerpackelements.com\";s:7:\"package\";s:198:\"https://powerpackelements.com/edd-sl/package_download/MTc4NDE2MTI5MTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjZlYjM3ZDk1NDFmNGJiYWYzY2JlZjE4MzczM2VhMTczOmh0dHBzQC8vbXJhcmlmLm1lL2Vzc2llOjA=\";s:13:\"download_link\";s:198:\"https://powerpackelements.com/edd-sl/package_download/MTc4NDE2MTI5MTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjZlYjM3ZDk1NDFmNGJiYWYzY2JlZjE4MzczM2VhMTczOmh0dHBzQC8vbXJhcmlmLm1lL2Vzc2llOjA=\";s:8:\"sections\";O:8:\"stdClass\":1:{s:9:\"changelog\";s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:92:\"https://mrarif.me/essie/wp-content/plugins/powerpack-elements/assets/images/icon-128x128.png\";s:2:\"2x\";s:92:\"https://mrarif.me/essie/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";s:7:\"default\";s:92:\"https://mrarif.me/essie/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";}s:12:\"contributors\";O:8:\"stdClass\":5:{s:16:\"ideaboxcreations\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:16:\"ideaboxcreations\";s:7:\"profile\";s:41:\"//profiles.wordpress.org/ideaboxcreations\";s:6:\"avatar\";s:61:\"https://wordpress.org/grav-redirect.php?user=ideaboxcreations\";}s:10:\"bloompixel\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"bloompixel\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/bloompixel\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=bloompixel\";}s:10:\"simrandeep\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"simrandeep\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/simrandeep\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=simrandeep\";}s:7:\"ibachal\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:7:\"ibachal\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/ibachal\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=ibachal\";}s:13:\"puneetsahalot\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:13:\"puneetsahalot\";s:7:\"profile\";s:38:\"//profiles.wordpress.org/puneetsahalot\";s:6:\"avatar\";s:58:\"https://wordpress.org/grav-redirect.php?user=puneetsahalot\";}}s:6:\"tested\";s:5:\"6.7.1\";s:9:\"changelog\";a:1:{i:0;s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:6:\"plugin\";s:41:\"powerpack-elements/powerpack-elements.php\";s:2:\"id\";s:41:\"powerpack-elements/powerpack-elements.php\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":16:{s:14:\"stable_version\";s:5:\"4.1.2\";s:12:\"last_updated\";s:19:\"2026-06-23 14:12:14\";s:11:\"new_version\";s:5:\"4.1.2\";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:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:18:\"elementor_requires\";s:4:\"3.34\";s:7:\"package\";s:373:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXNzaWUiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzOTc1NzEyLCJleHAiOjE3ODQwNjIxMTJ9.p3dbxcuDvLaqWuJlqOa0-f1bsORP9WSImM1kT1XqsYE/package_download\";s:13:\"download_link\";s:373:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXNzaWUiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzOTc1NzEyLCJleHAiOjE3ODQwNjIxMTJ9.p3dbxcuDvLaqWuJlqOa0-f1bsORP9WSImM1kT1XqsYE/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:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}s:12:\"requires_php\";s:3:\"7.4\";s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:7:\"checked\";a:4:{s:23:\"elementor/elementor.php\";s:5:\"4.1.4\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"4.1.2\";s:15:\"worker/init.php\";s:6:\"4.9.34\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.13.5\";}}', 'off'),
(1500, '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'),
(1471, 'mwp_openssl_parameters', 'a:2:{s:4:\"time\";i:1783975742;s:7:\"working\";b:1;}', 'on'),
(1472, 'mwp_incremental_update_active', '', 'auto'),
(1473, 'mwp_recovering', '', 'auto'),
(1474, 'mwp_core_autoupdate', '', 'auto'),
(1475, 'mwp_container_parameters', 'a:0:{}', 'auto'),
(1476, 'mwp_container_site_parameters', 'a:0:{}', 'auto'),
(1477, 'mwp_maintenace_mode', 'a:0:{}', 'auto'),
(1482, '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'),
(1479, 'worker_migration_version', '2', 'yes'),
(1539, 'litespeed.conf.cache-rest', '1', 'auto'),
(1486, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1783975782;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1783975782;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1783975782;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1783975782;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1783975782;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1783975782;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1783975782;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1783975782;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1783975782;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1783975782;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1783975782;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1783975782;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1783975782;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1783975782;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1783975782;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1783975782;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1783975782;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1783975782;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1783975782;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1783975782;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1783975782;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1783975782;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1783975782;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1783975782;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1783975782;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1783975782;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1783975782;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1783975782;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1783975782;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1783975782;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1783975782;}}', 'auto'),
(1484, 'mwp_public_keys_refresh_time', '1783975742', 'on'),
(1485, 'mwp_public_keys', 'a:11:{i:0;a:6:{s:2:\"id\";s:19:\"managewp_1779933901\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2026-06-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-07-14 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm+TeGvcByjcQDVOYH2H9\nEE/JtbTsIeTExunaMzACyprkUB3WGOWJ1T3nwFsQtysnTIG2NTIkoSGbz//iZ8cP\nZegFGFbK8RQHIWLSPxZ16JwNJWwHDzL9xlElHl7O4HjmFO2cAhZqdruDv2Aj9f+1\n68rs04d1LwfX7fK5H9nb70OFxNv7bbAQrLi6KQz84EE5UAM2c6Y42/iCNfP0tnI4\nhX2Whm+RL/C9JckJD0GhtmVOMcCaxwBUPP9Vz92u14E8qJvprRSzE84kp6soxcQR\nTcXWQ+s7ed2wdGNKdKhjXLSUDcKLRID/LTwNO8aVsditfoPvmzfgZnxm0hcw8lyW\n3QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:1;a:6:{s:2:\"id\";s:19:\"managewp_1782525902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2026-07-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-08-13 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8wJp+d8SSW3Fwrx9q3Ij\n9y/n+iwlRbw8p1P/zFe6Z8d9BDqxKjbuJCa2y1RXLkgmGh7/TjnvZJsrLmrzoihj\nIozdCZb/9ljS6nt6403nxhfZJFCY8rUjaS9x9l3iwsc40V7ebcZ4DgRoSXUGpEYO\nKC1h7Ns5FaI/jIcXM8eNsKCsVFRroYYwjhXE1oOQy/W9yR/HODfxRHSfPj9ohcXw\nhI6y1kNW6yc3eAZRJMifVSS1kVjTDpQCGzdxTWybikR5gAZz0WOKXWyVuWEZrHKI\nKf2NFteNKYbLSl+l8tyTCAHS+XnpDKrEXg/txNu10wXHtSHfKwhPlUUv8zRjuB98\nhwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:2;a:6:{s:2:\"id\";s:23:\"managewp_dev_1779933902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2026-06-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-07-14 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAusciN/32z5Twg8e16a2Q\nrhShcBYewc4oeI7iJTYS5JW+7vP5qD7hlo8O5FdSerd6oLQR554wDJHUjs96cZdT\nqRmFCk+DiKd5HwvwaSYHLCp0Wa1ptDSHuXFBjIbc60UmgackIfo0bOajgxUAX9UQ\nj7s49+7jhiz4A2FyV4FBaI9e+d5Oa+zxXW2G/+P/NE7+oAsDUSB9yLL9+eu0WLfx\n//h8041gsx5wXCD246dlsk1ZCdA5yV5esaT7k9AIncxhdi2FCc+ZBP2szXINq/6O\nrz7YSxkzVmCjex5MsNe119N9n/TK8IqUSQjFe56Kh73N4fY4EFfUHK6a8RFG95a4\n2wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:3;a:6:{s:2:\"id\";s:23:\"managewp_dev_1782525902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2026-07-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-08-13 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm3n7CI6U6NJUlSShhKfJ\nn4Ao3/pWp20CBJ6KHIUHIHLRLmrYUEWbsKzbctC+mnmZMv0oKZnaPK4fihgLEqTu\nc8UDER2KPfFj9oKdC1W5er3yI6VLzKgA2c3V7kW3co78elNg+pDMI0Q3k57qihUA\nQ1xvG57YO8dMseWZgl1SXJkdtP8pDZvXY02sNlEUBpNWHYIuuKVrXyANtR9cAjOF\n9+Vi32Q+3O/PMgRYbqfqlkgbpbkYfaSzErUfdUwxuP+k6ghKP7rBjTf+ehG+7jJL\n3OzRj2E+jrO/1M2nCak+CzX6CNcBRh/wl/O6NC+yyLARFXg3G7xUUqXh7C/0Abzy\nMQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:4;a:6:{s:2:\"id\";s:16:\"mwp20_1779933902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2026-06-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-07-14 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7NP9C+BdYarnu1jvOaQr\nd9vO+5guVXm06AiBtCEoQeDF/JwWnUbH2ZKrcR6j7diP2fipZrvZQsEmwGA5L4UP\neB/yJbULGe0w1iycxL5izeZoSnE7fDPYFZhjTk37NqX8wfWpX5KgYR3h8O2kFjGg\n1iUlXgVJxu/jlEu7tjd3BYnD+vYdm4v28mIJE6a+m2DwDrhrB6iPrJgEZNCeCVN/\nyjbgguOyMuWSQgnUbd3oS86CW5bUtkNqGnxV2mIOrULGeskxqOklCXDRJkLMVM7H\nR9m8nkFAzojcddIlSqmxMDAlR77BKwJqPLmj33ncESob0E14jJaOqLBjXwsihu9N\nOQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:5;a:6:{s:2:\"id\";s:16:\"mwp20_1782525902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2026-07-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-08-13 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7WtikGadlD5eJJU2G9Jj\nipQbMOL/zfGVOfk816F2+NiegRI6a8CgB8Ybtu15Nu5F97GAavPPfNbkIKpAQXlj\nlgryZyzCBcTT/FpT6sE6GaN786W1/XZxEDby4dFxIIjz9JYZWPCYU2MZRp5I1Ek9\njK4ClZPPbeMZVmo+8akjS6QdSefbFsdulRYkYAqm03QliVO54WlAWGMBXhKRZXp4\n99LzOG51hJR14Td/S62iyb/T+gDsFsdzjIDFlixNmEjEaiTUrcnWnnZ7gI/ykupy\nVIXJhSSLuGHbocXjwiSk7rKOFp27ltrm8FUtByb749Yr/rh1VdRVNzNS/W1lV88v\ndQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:15:\"wpps_1782133502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2026-07-07 13:05:01\";s:7:\"validTo\";s:19:\"2026-08-08 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwWSDKIJrKWwdX31Bk1np\nmPWTLjdxXUEQmp21EIv3vK4kMgDkw4QIECTmQ4qw/jRhF+POagX3jzC6GYeldVOu\naNIKiWON5bFdPRKBb5ojGdEe+RPmDbXsQaXMbWI2GsgtgX9Xt3bzd9htv3JZxVIV\nHHHnTMvTQirqCef+8FqpYYdzVN/WHvza3fj4QVP17YaBX+/RsMJabcTOB6xcBJ3M\nl2SRTReZoeW0gE+1ndzm8qiemeDSuvQLYrCpFL8bfkl+ogX4imbtr+mmYOeL3+qT\n9+EWvD4N/V2j/PmkMZQPKOOkyyPaYeqXjU6tkBgVVT9zgor0Xt3OVMUJo/aEKFSR\nAwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:25:\"cookie_service_1780765501\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2026-06-21 16:27:25\";s:7:\"validTo\";s:19:\"2026-07-23 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqpORYqiXmUtvJzAH7lrW\n8kMP8YvWWyhj4/A22zkka6V+YAGG0mg6c8unM6k7F1M5h19As48kf1VdRa+mioxs\ntFr1vaQ7BCsQpX84EmqlkI/GZ21L8BUAQTcvffKLMZxUp5FwLeVco5nPOFMTauQl\nsSCy5rbKdrvR4HkjYVfNQbfnjsuTOjpXvvAZgstKZVswsWQsnI2N4t10WFNVO0rW\n/FTm5kujgYvV+KbCY31UlBzrf5WA+V8m5F8I+x4AEo1SW0zI2ZbzR76OBc36+mYr\n0iAWCZYp2j/KYB5TYfj3d59MYwReTVFmPP0AdzbfhnnWCZ+H+BRNVqGGEo8/OilX\nFQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:25:\"cookie_service_1783357501\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2026-07-21 16:27:25\";s:7:\"validTo\";s:19:\"2026-08-22 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2GAh/m1AuGhWfcrmO/pm\nLSssTlpgtWOVtMx+SXfolwnNhaZx1bv136F8FmLuxdk2pfZgbWvbWnkGNFazxNc1\n/pcmFIkiZQ3FUCV6byAI9gEp3z0LLRFiRY1dqWqB7zhn3f46ImLfBfn0man4ugmB\nu1z2yKnekhKH7Ane+fteDttvm5vduSyIdyOIXs52ygPN1FGdW3Mh279tmReoA9Ez\naBPPJgps4bY5H+jbvhx7yZiTVige9h1cmChCRyft1JkDXBmvIJDPnb/RFMREsCFx\nStAIwAPXjFxS/xA8epdraRUBWqBMXgBfB5KE/LMrNH5HYpof9TOA7k19Vwgubg3z\nxQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:9;a:6:{s:2:\"id\";s:15:\"mwp1_1782223502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2026-07-08 14:05:01\";s:7:\"validTo\";s:19:\"2026-08-09 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvdnTDcARHs0T6J2/mB+i\nNPV0FmL6GvqtRi7kj5daA9jCOP/KXvLc7j0vEgyURhzbW7MCFblfag56RD9E7FIX\n7TscMzDQ3cEoS3w0WBSZ1oxBqb5VEvljtVXYlHWR/dGs6hD6JFRVY0ZTFLZDn/7s\nGScpSZHRG51lOAilp20uVTNeu7Jv3URgIuqXLqrfSHzP0AlUo3ZF4SbnWJGORySP\nqQr2jaE7YKoYeGm2u4jebMkeMIBjSGvjiz2jLLgpw/110l7qCvcazUX2SzZ2PWJx\nr9/V0fcRMsLk2qGvXlfn6x2se5h1ZTLDkLYTg/MQ7oeWjf01HBxO5eSXKyJ+mnX6\nMwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:10;a:6:{s:2:\"id\";s:20:\"migration_1782479102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2026-07-11 13:05:02\";s:7:\"validTo\";s:19:\"2026-08-12 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqJXKnbbyT3rPFqRJtL99\nfiFop3zytz7tuCOHF/mvvH8dmuRBKbbGLxIpF/x1FnWYGih4RGbP5SR4dmkV9gNg\nYX5mvyYd3cxvzPZbfguflexgubmKC8huQboDXMfWC0CtUyN9jQIygtflj57H/WzH\nxDi33kfvL73TZ1PB2URPkEA/37159TDxQsyIu7wtSVJKBV/dILJuiYpfeb4hvBN+\nvCZ5ONPCG6IQWe2UcGTRdX2Emu55XY1+XbWxn0j/Y0LHGkdrghgmtyWGJIOJhujR\ngA3vnkKL4ONoCU3v8MaKpxnAyzJgAXf3bVUYdO+dPqDou8yVytkXpE8RrU95Kjw+\n9QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}', 'on'),
(125, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1783748480;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(126, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c6a8a3b333c52a38ee27a4832611d42\";s:6:\"blocks\";a:7:{s:32:\"0368537a03d4b05ed11f802c802c5153\";s:0:\"\";s:32:\"500888137eafa12a508de2c588d9ffdd\";s:46:\":root :where(.wp-block-icon svg){width: 24px;}\";s:32:\"a6036e6eb2ad2df7ed8860b807868647\";s:0:\"\";s:32:\"3b46efc0a10c1dae38f584ad199c3544\";s:0:\"\";s:32:\"ab4df16c9e454bfed8a404309545590d\";s:0:\"\";s:32:\"68ec5cad52d993402775a7503ba9efb7\";s:0:\"\";s:32:\"b8b4aa19e69b9b2de0f5c27097467bd6\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(293, 'pp_elementor_modules', 'a:63:{i:0;s:21:\"pp-advanced-accordion\";i:1;s:16:\"pp-advanced-menu\";i:2;s:16:\"pp-advanced-tabs\";i:3;s:8:\"pp-album\";i:4;s:14:\"pp-author-list\";i:5;s:14:\"pp-breadcrumbs\";i:6;s:17:\"pp-business-hours\";i:7;s:19:\"pp-business-reviews\";i:8;s:10:\"pp-buttons\";i:9;s:14:\"pp-card-slider\";i:10;s:13:\"pp-categories\";i:11;s:9:\"pp-charts\";i:12;s:17:\"pp-content-reveal\";i:13;s:17:\"pp-content-ticker\";i:14;s:12:\"pp-countdown\";i:15;s:10:\"pp-counter\";i:16;s:10:\"pp-coupons\";i:17;s:10:\"pp-devices\";i:18;s:10:\"pp-divider\";i:19;s:15:\"pp-dual-heading\";i:20;s:16:\"pp-fancy-heading\";i:21;s:6:\"pp-faq\";i:22;s:10:\"pp-flipbox\";i:23;s:14:\"pp-google-maps\";i:24;s:11:\"pp-hotspots\";i:25;s:12:\"pp-icon-list\";i:26;s:18:\"pp-image-accordion\";i:27;s:19:\"pp-image-comparison\";i:28;s:16:\"pp-image-gallery\";i:29;s:15:\"pp-image-slider\";i:30;s:11:\"pp-info-box\";i:31;s:20:\"pp-info-box-carousel\";i:32;s:12:\"pp-info-list\";i:33;s:13:\"pp-info-table\";i:34;s:12:\"pp-instafeed\";i:35;s:13:\"pp-login-form\";i:36;s:16:\"pp-logo-carousel\";i:37;s:12:\"pp-logo-grid\";i:38;s:18:\"pp-magazine-slider\";i:39;s:10:\"pp-marquee\";i:40;s:14:\"pp-modal-popup\";i:41;s:20:\"pp-offcanvas-content\";i:42;s:14:\"pp-onepage-nav\";i:43;s:8:\"pp-posts\";i:44;s:13:\"pp-price-menu\";i:45;s:16:\"pp-pricing-table\";i:46;s:12:\"pp-promo-box\";i:47;s:15:\"pp-random-image\";i:48;s:9:\"pp-recipe\";i:49;s:20:\"pp-registration-form\";i:50;s:13:\"pp-review-box\";i:51;s:11:\"pp-showcase\";i:52;s:10:\"pp-sitemap\";i:53;s:8:\"pp-table\";i:54;s:20:\"pp-table-of-contents\";i:55;s:14:\"pp-team-member\";i:56;s:23:\"pp-team-member-carousel\";i:57;s:15:\"pp-testimonials\";i:58;s:14:\"pp-tiled-posts\";i:59;s:11:\"pp-timeline\";i:60;s:9:\"pp-toggle\";i:61;s:8:\"pp-video\";i:62;s:16:\"pp-video-gallery\";}', 'auto'),
(128, 'recovery_keys', 'a:0:{}', 'off'),
(404, '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:\"7.0.1\";s:9:\"timestamp\";i:1783751939;}', 'off'),
(281, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783975714;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.13.6\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.13.6\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.13.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'off'),
(134, '_site_transient_timeout_browser_16fee37559dbd42b448204446d02089f', '1784353074', 'off'),
(135, '_site_transient_browser_16fee37559dbd42b448204446d02089f', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"149.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(136, '_site_transient_timeout_php_check_2cd6b574a37d822556e9c586248b843b', '1784353074', 'off'),
(137, '_site_transient_php_check_2cd6b574a37d822556e9c586248b843b', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(1514, '_site_transient_timeout_n_19e24ffbe8a69c008f5f5ae0c3e6c5f1b22dce', '1784062794', 'off'),
(1515, '_site_transient_n_19e24ffbe8a69c008f5f5ae0c3e6c5f1b22dce', '1783976393', 'off'),
(1503, 'mwp_new_communication_established', '1', 'on'),
(1504, '_site_transient_timeout_n_5ac1bf738f5f7537d9531ccb883a22e798af7a', '1784062217', 'off'),
(1505, '_site_transient_n_5ac1bf738f5f7537d9531ccb883a22e798af7a', '1783975816', 'off'),
(1507, '_site_transient_n_39dec21697e7fce7d734ebc2c029dbb6bfc7ee', '1783975818', 'off'),
(1508, 'mwp_pro_connected', 'pro_sites', 'auto'),
(1512, '_site_transient_timeout_n_ynyhrpvagmkacjhuewrx3aav3zlhq15kic6kln', '1784062611', 'off'),
(1513, '_site_transient_n_ynyhrpvagmkacjhuewrx3aav3zlhq15kic6kln', '1783976210', 'off'),
(1528, 'litespeed.conf._version', '7.8.0.1', 'auto'),
(1529, 'litespeed.conf.hash', 'UJnOsruyckzIS6t5OX6jCqCkoLqVNPwQ', 'auto'),
(1530, 'litespeed.conf.api_key', '', 'auto'),
(1531, 'litespeed.conf.auto_upgrade', '', 'auto'),
(1532, 'litespeed.conf.server_ip', '', 'auto'),
(1533, 'litespeed.conf.guest', '', 'auto'),
(1534, 'litespeed.conf.guest_optm', '', 'auto'),
(1535, 'litespeed.conf.news', '1', 'auto'),
(1537, 'litespeed.conf.cache-priv', '1', 'auto'),
(1538, 'litespeed.conf.cache-commenter', '1', 'auto'),
(1497, '_site_transient_n_e5911d910b9ba8aad0e0e9a97c87bb2ecf21bc', '1783975814', 'off'),
(1496, '_site_transient_timeout_n_e5911d910b9ba8aad0e0e9a97c87bb2ecf21bc', '1784062216', 'off'),
(1493, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:1:{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\";}}}}', 'auto'),
(1452, '_transient_is_multi_author', '0', 'on'),
(1459, '_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_elementor', '1784018871', 'off'),
(1460, '_site_transient_wp_plugin_dependencies_plugin_timeout_elementor', '1', 'off'),
(1435, '_site_transient_timeout_community-events-b3ce4eb76528d3b8101d113ea6f65d4b', '1784014987', 'off'),
(1436, '_site_transient_community-events-b3ce4eb76528d3b8101d113ea6f65d4b', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"45.120.99.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:32:\"WordPress Campus Connect Kolkata\";s:3:\"url\";s:56:\"https://events.wordpress.org/campusconnect/2026/kolkata/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-18 00:00:00\";s:8:\"end_date\";s:19:\"2026-09-19 00:00:00\";s:20:\"start_unix_timestamp\";i:1784313000;s:18:\"end_unix_timestamp\";i:1789756200;s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Kolkata, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:22.5730201;s:9:\"longitude\";d:88.4371817;}}}}', 'off'),
(1488, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:136;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:482;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'),
(1489, 'elementor_atomic_cache_validity__template-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:136;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:482;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');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1490, 'elementor_atomic_cache_validity__base', 'a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b17ba\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}', 'off'),
(1491, 'elementor_atomic_cache_validity__global', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:136;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b1a57\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:482;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b1c18\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:10;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b1e45\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off'),
(1492, 'elementor_atomic_cache_validity__local', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:136;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b209b\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:482;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b2265\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:10;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a554f67b2418\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(152, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:5:\"4.1.4\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"7.0.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6131;i:4;i:231;i:3;i:121;i:2;i:116;i:1;i:678;}s:11:\"num_ratings\";i:7277;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:51;s:24:\"support_threads_resolved\";i:38;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-06-21 1:20pm GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:24938:\"<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 22M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Atomic Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Now in version 4 – the Atomic Editor! Introducing a new generation of performance-first atomic building blocks that allow you to control every atomic part with no limits or locked layouts. Define your global design systems and reusable components once, and they apply everywhere instantly – turning hours or even days of work into single clicks.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create professional stunning websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive drag &amp; drop builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-perfect design tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.  </li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design system</a></strong>: Use Variables and Classes for consistent colors, typography, and design elements, ensuring a cohesive, professional look that updates everywhere globally.  </li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.  </li>\n<li><strong>Mask shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.  </li>\n<li><strong>CSS transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.  </li>\n<li><strong>Entrance animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.  </li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision history</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.  </li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.  </li>\n<li><strong>Components [Pro]</strong>: Reuse the same building blocks across pages and sites, and update them everywhere they appear. Including controlled content editing, allowing collaborators and clients to update only exposed content properties without breaking layout or styling.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.  </li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.  </li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.  </li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.  </li>\n<li><strong>Custom fonts and icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>: Add eye-catching headlines.  </li>\n<li><strong>Image</strong>: Control the size, opacity and more.  </li>\n<li><strong>Text Editor</strong>: Just like the WordPress text editor.  </li>\n<li><strong>Video</strong>: Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.  </li>\n<li><strong>Button</strong>: Create interactive buttons.  </li>\n<li><strong>Link in Bio</strong>: Build link in bio components to promote your business / services.  </li>\n<li><strong>Image Box</strong>: A box with image, headline and text.  </li>\n<li><strong>Testimonials</strong>: Customer testimonials.  </li>\n<li><strong>Icon</strong>: Place one or more of 600+ icons available.  </li>\n<li><strong>Icon Box</strong>: An icon, headline, and text with one widget.  </li>\n<li><strong>Social Icons</strong>: Link to your social pages with the Facebook/X (formerly Twitter) icons.  </li>\n<li><strong>Image Gallery</strong>: Display your images in a grid.  </li>\n<li><strong>Image Carousel</strong>: Create rotating carousels or sliders for chosen images.  </li>\n<li><strong>Icon List</strong>: Use any icon to create a bullet list.  </li>\n<li><strong>Counter</strong>: Show numbers in an escalating manner.  </li>\n<li><strong>Progress Bar</strong>: Include an escalating progress bar.  </li>\n<li><strong>Nested Tabs</strong>: Display content in vertical or horizontal tabs.  </li>\n<li><strong>Nested Accordion</strong>: Display any type of content in collapsible sections.  </li>\n<li><strong>Rating</strong>: Display how many stars (or another icon) other visitors gave.  </li>\n<li><strong>Alert</strong>: Include a colored alert box to draw visitor’s attention.  </li>\n<li><strong>HTML</strong>: Insert code into the page.  </li>\n<li><strong>Shortcode</strong>: Insert shortcodes from any plugin into the page.  </li>\n<li><strong>Menu Anchor</strong>: Link any menu to this anchor.  </li>\n<li><strong>Read More</strong>: Set the Read More cut-off for the excerpt in archive pages.  </li>\n<li><strong>Sidebar</strong>: Add sidebars onto the page.  </li>\n<li><strong>Google Maps</strong>: Embed maps into the page.  </li>\n<li><strong>SoundCloud</strong>: Add SoundCloud audio bits.  </li>\n<li><strong>Divider</strong>: Separate content with a designed divider.  </li>\n<li><strong>Spacer</strong>: Add space between elements.  </li>\n<li><strong>Text Path</strong>: Attach your text to a path.  </li>\n<li><strong>And counting…</strong></li>\n</ul>\n<h3>🚀 Enhance your website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-performing websites</a></strong>: Website performance impacts your visitors’ experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM output</strong>: Streamlined HTML structure for faster rendering.  </li>\n<li><strong>Improved media file loading</strong>: Optimized loading of images, videos, and other media assets.  </li>\n<li><strong>Reduced CSS and JS files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.  </li>\n<li><strong>Lazy loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.  </li>\n<li><strong>Faster font loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.  </li>\n<li><strong>Optimized front-end asset loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.  </li>\n<li><strong>Element caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro design widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.  </li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.  </li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.  </li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.  </li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.  </li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.  </li>\n<li><strong>Nav Menu</strong>: Customize and style your website’s navigation menu for better user experience.  </li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.  </li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.  </li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.  </li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.  </li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.  </li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.  </li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.  </li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.  </li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.  </li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.  </li>\n<li><strong>Table of Contents</strong>: Generate a table of contents for longer articles or guides to improve navigation.  </li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.  </li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.  </li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.  </li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.  </li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.  </li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.  </li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.  </li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website’s pages or posts.  </li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.  </li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.  </li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.  </li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.  </li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.  </li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.  </li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro theme widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more…</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.  </li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.  </li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.  </li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.  </li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.  </li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.  </li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.  </li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.  </li>\n<li><strong>Site Logo</strong>: Upload and customize your website’s logo for branding purposes.  </li>\n<li><strong>Site Title</strong>: Customize the title of your website.  </li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.  </li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website’s content.  </li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.  </li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.  </li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.  </li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.  </li>\n<li><strong>Product Title</strong>: Customize the title of individual products.  </li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.  </li>\n<li><strong>Product Price</strong>: Display the price of individual products.  </li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.  </li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.  </li>\n<li><strong>Product Stock</strong>: Display stock availability for products.  </li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.  </li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.  </li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.  </li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.  </li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.  </li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.  </li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.  </li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.  </li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.  </li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.  </li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.  </li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.  </li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.  </li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.  </li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.  </li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.  </li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 Security and compliance</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility best practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>🧩 Use of 3rd-party services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.  </li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly stated, and require your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimization</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Email Deliverability</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Web Accessibility</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediates key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See what our users have to say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” –  &hellip;</p>\n</blockquote>\n\";s:12:\"installation\";s:2338:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.8 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.6 or MariaDB version 10.5 or greater</li>\n<li>PHP Memory limit of 256 MB or greater</li>\n<li>WordPress Memory limit of 256 MB or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>WordPress 7.0 or greater</li>\n<li>PHP version 8.3 or greater</li>\n<li>MySQL version 8.0 or MariaDB version 10.6 or greater</li>\n<li>PHP Memory limit of 512 MB (768 MB for best performance) or greater</li>\n<li>WordPress Memory limit of 512 MB (768 MB for best performance) or greater</li>\n</ul>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<p><strong>Note:</strong> These requirements are for Elementor and Elementor Pro only. If you are using additional plugins on your site that also have minimum requirements such as WooCommerce or Elementor addons, you may need to increase your PHP and WordPress Memory limit to help avoid loading issues. See also, the following documentation <a href=\"https://elementor.com/help/elementor-widget-panel-not-loading/\" rel=\"nofollow ugc\">Elementor Widget Panel Not Loading</a>.</p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5054:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on ‘Add new’-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor’s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%E2%80%99s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor’s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help. You can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:3187:\"<h4>4.1.4 &#8211; 2026-06-21</h4>\n<ul>\n<li>Fix: Improved code security enforcement in query handling</li>\n</ul>\n<h4>4.1.3 &#8211; 2026-06-10</h4>\n<ul>\n<li>Fix: Cloud Library screenshot errors could prevent users from saving templates locally</li>\n</ul>\n<h4>4.1.2 &#8211; 2026-06-08</h4>\n<ul>\n<li>Tweak: Improved Global Classes usage tracking for safer deletion &#8211; Atomic Editor</li>\n<li>Fix: Image with Lightbox inherits default button styles &#8211; Atomic Editor</li>\n<li>Fix: Image settings are not saved when using Insert from URL &#8211; Atomic Editor</li>\n<li>Fix: Media attachments may be requested too many times in the Editor &#8211; Atomic Editor</li>\n<li>Fix: Pages using Global Classes may fail to publish or show missing styles on the live site &#8211; Atomic Editor</li>\n<li>Fix: Editor context may not sync correctly when navigating between documents</li>\n</ul>\n<h4>4.1.1 &#8211; 2026-05-27</h4>\n<ul>\n<li>Security Fix: Improved code security enforcement in content handling</li>\n<li>Security Fix: Improved code security enforcement in template handling</li>\n<li>Fix: Hiding one filter prevents other filters from being applied &#8211; Atomic Editor</li>\n</ul>\n<h4>4.1.0 &#8211; 2026-05-26</h4>\n<ul>\n<li>New: Introducing the Design System panel for managing Variables and Classes in one place &#8211; Atomic Editor</li>\n<li>New: Introducing Angie in the Editor to help generate and modify Atomic layouts, Components, Forms, Classes, and Variables &#8211; Atomic Editor</li>\n<li>New: Introducing Markdown rendering as an Alpha experiment to improve how content is structured for AI systems</li>\n<li>Tweak: Added import and export for Variables and Classes from the Design System panel &#8211; Atomic Editor</li>\n<li>Tweak: Increased the Class limit to 1000 &#8211; Atomic Editor</li>\n<li>Tweak: Added duplicate support for Variables in the Variables Manager &#8211; Atomic Editor</li>\n<li>Tweak: Added duplicate support for Classes in the Class field &#8211; Atomic Editor</li>\n<li>Tweak: Added support for Variables in additional style controls, including Effects, Filters, and Box Shadow &#8211; Atomic Editor</li>\n<li>Tweak: Added multi-select support to Direction control in Interactions &#8211; Atomic Editor</li>\n<li>Tweak: Added Interaction actions to the History panel &#8211; Atomic Editor</li>\n<li>Tweak: Added support for negative Box Shadow values &#8211; Atomic Editor</li>\n<li>Tweak: Improved reordering of Component properties with full drag-and-drop support &#8211; Atomic Editor</li>\n<li>Tweak: Updated Position and Z-index control visibility and behavior &#8211; Atomic Editor</li>\n<li>Tweak: Updated the minimum required WordPress version to 6.8</li>\n<li>Tweak: Added the External URL option to Image control &#8211; Atomic Editor</li>\n<li>Fix: Slide Interactions can be applied without selecting a direction &#8211; Atomic Editor</li>\n<li>Fix: Undo does not work as expected for individual Class properties &#8211; Atomic Editor</li>\n<li>Fix: Font family values persist on Global Classes after deletion &#8211; Atomic Editor</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:16729:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Too many promotional messages in the Elementor dashboard</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tiri17/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a93b723acac08d831e6db6eb756b246ec0ae97cec8af4cdcbb63e4f91135628c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a93b723acac08d831e6db6eb756b246ec0ae97cec8af4cdcbb63e4f91135628c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/tiri17/\" class=\"reviewer-name\">Thierry Laval <small>(tiri17)</small></a> on <span class=\"review-date\">July 11, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor is an excellent page builder, but my frustration, as well as that of my clients regarding the repeated display of promotional messages in the dashboard, leads me to give it only one star.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is becoming extremely annoying to see advertising everywhere, including inside an administration area that should remain a clean and professional workspace. This constant promotion creates a strong rejection of the product instead of encouraging users to continue using Elementor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Users should be given a simple option to disable these promotional messages and keep control over their own workspace.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">learning curve is quite steep for new users</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ashlyjohny/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ashlyjohny/\" class=\"reviewer-name\">ashlyjohny</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The plugin is good and offers useful features, but the learning curve is quite steep for new users. Better documentation or beginner-friendly tutorials would make it much easier to get started.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ethanmaller/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ethanmaller/\" class=\"reviewer-name\">ethanmaller</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor was key in helping us implement our designs across our pages and blogs. It was an interesting learning curve at first, but everything clicked once we understood the logic.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Where is Elementor heading?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/updesignme/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/updesignme/\" class=\"reviewer-name\">updesignme</a> on <span class=\"review-date\">July 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I am very disappointed with Elementor. V4 is utterly unreliable and causing all kinds of erratic behaviour and difficulties. There is limited help resources available, and just don\'t try to contact support, because everything will your fault. I have already moved my hosting away. Seems it\'s time to look for a new page builder too. Not happy Elementor!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Editor is frustrating - Broken</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ssiddiqi4/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ssiddiqi4/\" class=\"reviewer-name\">ssiddiqi4</a> on <span class=\"review-date\">July 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I rolled-back to version 4.1.2 after wasting a few frustrating days with v 4.1.4. The Editor was horribly slow to load.  I kept troubleshooting plugins and other tweaks.  Nothing helped, after rolling back to v 4.1.2, I got a working Elementor again. With their ambitious new features, Elementor team did a very good job to make v 4.1.4 useless.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Beaucoup trop lourd</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/remyrivalis/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/remyrivalis/\" class=\"reviewer-name\">remyrivalis</a> on <span class=\"review-date\">July 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Tout dans ce plugin est trop lourd :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Admin trop lourde, vous serez peut-être obligé d\'augmenter la mémoire disponible pour pouvoir éditer des pages.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page en front trop lourde, ralenti le site et globalement mauvais coté SEO.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Vu les possibilité qu\'offre Gutemberg qui s\'étoffe de plus en plus, je ne recommande vraiment pas ce plugin !</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Constantly Breaking Customer Websites</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/retunes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d92391c4a983b3081b5732fbdb32184792777ef175a2c153268f44b2f9cc0174?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d92391c4a983b3081b5732fbdb32184792777ef175a2c153268f44b2f9cc0174?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/retunes/\" class=\"reviewer-name\">retunes</a> on <span class=\"review-date\">June 30, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Best Client Experience</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Not intuitive and hard to manage</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/strokehouse/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aa5e9e5c93b173f9862f5be628d1cc9fc781b9238d31938a90cd9e69124ac1ac?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aa5e9e5c93b173f9862f5be628d1cc9fc781b9238d31938a90cd9e69124ac1ac?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/strokehouse/\" class=\"reviewer-name\">strokehouse</a> on <span class=\"review-date\">June 28, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Some tasks such as finding my templates are impossible. Poorly designed from top to bottom. Unfortunately we\'re stuck using this product due to other product relying in this.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">The most horrible update in Elementor&#039;s history.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hektor777/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/339bd3a59d9dcfa5228dff52f8ad3f88209f49914f3ed56768655046addc79e5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/339bd3a59d9dcfa5228dff52f8ad3f88209f49914f3ed56768655046addc79e5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/hektor777/\" class=\"reviewer-name\">hektor777</a> on <span class=\"review-date\">June 26, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Messy widgets, unfriendly menu bars, lack of customization of widgets, severe slowdown, etc. All these problems have catastrophically reduced Elementor\'s score after the 4.1.4 update. Please go back to version 4.1.2, guys.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">excelente</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/dalbarracin/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/237e6522203622d543d7ef11aa2ec86cc2ccea61a9564890217ceb779db4a40e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/237e6522203622d543d7ef11aa2ec86cc2ccea61a9564890217ceb779db4a40e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/dalbarracin/\" class=\"reviewer-name\"> <small>(dalbarracin)</small></a> on <span class=\"review-date\">June 25, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Lo estoy usando y las prestaciones que tiene son geniales</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:159:\"The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile r &hellip;\";s:13:\"download_link\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:441:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:6:\"3.30.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:12:\"3.30.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:11:\"3.30.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip\";s:6:\"3.30.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip\";s:6:\"3.30.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip\";s:6:\"3.30.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip\";s:6:\"3.30.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip\";s:6:\"3.31.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip\";s:12:\"3.31.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip\";s:12:\"3.31.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip\";s:11:\"3.31.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip\";s:11:\"3.31.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip\";s:6:\"3.31.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip\";s:6:\"3.31.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip\";s:6:\"3.31.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip\";s:6:\"3.31.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.4.zip\";s:6:\"3.31.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.5.zip\";s:6:\"3.32.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.0.zip\";s:12:\"3.32.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip\";s:12:\"3.32.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip\";s:12:\"3.32.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip\";s:11:\"3.32.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip\";s:11:\"3.32.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip\";s:11:\"3.32.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip\";s:6:\"3.32.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.1.zip\";s:6:\"3.32.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.2.zip\";s:6:\"3.32.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.3.zip\";s:6:\"3.32.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.zip\";s:6:\"3.32.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip\";s:6:\"3.33.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.0.zip\";s:12:\"3.33.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip\";s:12:\"3.33.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip\";s:12:\"3.33.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip\";s:12:\"3.33.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip\";s:11:\"3.33.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip\";s:11:\"3.33.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip\";s:11:\"3.33.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip\";s:11:\"3.33.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip\";s:6:\"3.33.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.1.zip\";s:6:\"3.33.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.2.zip\";s:6:\"3.33.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.3.zip\";s:6:\"3.33.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:6:\"3.33.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.5.zip\";s:6:\"3.33.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.6.zip\";s:6:\"3.34.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.0.zip\";s:12:\"3.34.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta1.zip\";s:12:\"3.34.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta2.zip\";s:12:\"3.34.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta3.zip\";s:11:\"3.34.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev1.zip\";s:11:\"3.34.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev2.zip\";s:6:\"3.34.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.1.zip\";s:6:\"3.34.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.2.zip\";s:6:\"3.34.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.3.zip\";s:6:\"3.34.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.4.zip\";s:6:\"3.35.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:12:\"3.35.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta1.zip\";s:12:\"3.35.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta2.zip\";s:12:\"3.35.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta3.zip\";s:12:\"3.35.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta4.zip\";s:11:\"3.35.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev1.zip\";s:11:\"3.35.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev2.zip\";s:11:\"3.35.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev3.zip\";s:11:\"3.35.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev4.zip\";s:6:\"3.35.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.1.zip\";s:6:\"3.35.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.2.zip\";s:6:\"3.35.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.3.zip\";s:6:\"3.35.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.4.zip\";s:6:\"3.35.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:6:\"3.35.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.6.zip\";s:6:\"3.35.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.zip\";s:6:\"3.35.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.8.zip\";s:6:\"3.35.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.9.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"4.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.0.zip\";s:11:\"4.0.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta1.zip\";s:11:\"4.0.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta2.zip\";s:11:\"4.0.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta3.zip\";s:11:\"4.0.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta4.zip\";s:11:\"4.0.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta5.zip\";s:10:\"4.0.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev1.zip\";s:10:\"4.0.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev2.zip\";s:10:\"4.0.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev3.zip\";s:10:\"4.0.0-dev4\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev4.zip\";s:10:\"4.0.0-dev5\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev5.zip\";s:5:\"4.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.1.zip\";s:5:\"4.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.2.zip\";s:5:\"4.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.3.zip\";s:5:\"4.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.4.zip\";s:5:\"4.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.5.zip\";s:5:\"4.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.6.zip\";s:5:\"4.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.7.zip\";s:5:\"4.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.8.zip\";s:5:\"4.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.9.zip\";s:5:\"4.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.0.zip\";s:11:\"4.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta1.zip\";s:11:\"4.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta2.zip\";s:11:\"4.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta3.zip\";s:10:\"4.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev1.zip\";s:10:\"4.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev2.zip\";s:10:\"4.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev3.zip\";s:5:\"4.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.1.zip\";s:5:\"4.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.2.zip\";s:5:\"4.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.3.zip\";s:5:\"4.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:11:\"4.2.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.2.0-beta1.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(153, 'recently_activated', 'a:0:{}', 'off'),
(1540, 'litespeed.conf.cache-page_login', '1', 'auto'),
(1541, 'litespeed.conf.cache-mobile', '', 'auto'),
(1542, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(1543, 'litespeed.conf.cache-browser', '', 'auto'),
(1544, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(1545, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(1546, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(1547, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(1548, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(1549, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(1550, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(1551, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(1552, 'litespeed.conf.cache-exc', '[]', 'auto'),
(1553, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(1554, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(1555, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(1556, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(1557, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(1558, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(1559, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(1560, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(1561, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(1562, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(1563, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(1564, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(1565, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(1566, 'litespeed.conf.purge-upgrade', '', 'auto'),
(1567, 'litespeed.conf.purge-stale', '', 'auto'),
(1568, 'litespeed.conf.purge-post_all', '', 'auto'),
(1569, 'litespeed.conf.purge-post_f', '1', 'auto'),
(1570, 'litespeed.conf.purge-post_h', '1', 'auto'),
(1571, 'litespeed.conf.purge-post_p', '1', 'auto'),
(1572, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(1573, 'litespeed.conf.purge-post_a', '1', 'auto'),
(1574, 'litespeed.conf.purge-post_y', '', 'auto'),
(1575, 'litespeed.conf.purge-post_m', '1', 'auto'),
(1576, 'litespeed.conf.purge-post_d', '', 'auto'),
(1577, 'litespeed.conf.purge-post_t', '1', 'auto'),
(1578, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(1579, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(1580, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(1581, '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'),
(1582, 'litespeed.conf.esi', '', 'auto'),
(1583, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(1584, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(1585, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(1586, 'litespeed.conf.util-instant_click', '', 'auto'),
(1587, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(1588, 'litespeed.conf.debug-disable_all', '', 'auto'),
(1589, 'litespeed.conf.debug', '0', 'auto'),
(1590, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(1591, 'litespeed.conf.debug-level', '', 'auto'),
(1592, 'litespeed.conf.debug-filesize', '3', 'auto'),
(1593, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(1594, 'litespeed.conf.debug-inc', '[]', 'auto'),
(1595, 'litespeed.conf.debug-exc', '[]', 'auto'),
(1596, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(1597, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(1598, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(1599, 'litespeed.conf.optm-css_min', '', 'auto'),
(1600, 'litespeed.conf.optm-css_comb', '', 'auto'),
(1601, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(1602, 'litespeed.conf.optm-ucss', '', 'auto'),
(1603, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(1604, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(1605, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(1606, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(1607, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(1608, 'litespeed.conf.optm-js_min', '', 'auto'),
(1609, 'litespeed.conf.optm-js_comb', '', 'auto'),
(1610, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(1611, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(1612, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(1613, 'litespeed.conf.optm-html_min', '', 'auto'),
(1614, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(1615, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(1616, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(1617, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(1618, 'litespeed.conf.optm-css_async', '', 'auto'),
(1619, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(1620, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(1621, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(1622, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(1623, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(1624, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(1625, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(1626, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(1627, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(1628, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(1629, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(1630, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(1631, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(1632, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(1633, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(1634, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(1635, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(1636, 'litespeed.conf.optm-exc', '[]', 'auto'),
(1637, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(1638, 'litespeed.conf.object', '', 'auto'),
(1639, 'litespeed.conf.object-kind', '', 'auto'),
(1640, 'litespeed.conf.object-host', 'localhost', 'auto'),
(1641, 'litespeed.conf.object-port', '11211', 'auto'),
(1642, 'litespeed.conf.object-life', '360', 'auto'),
(1643, 'litespeed.conf.object-persistent', '1', 'auto'),
(1644, 'litespeed.conf.object-admin', '1', 'auto'),
(1645, 'litespeed.conf.object-db_id', '0', 'auto'),
(1646, 'litespeed.conf.object-user', '', 'auto'),
(1647, 'litespeed.conf.object-pswd', '', 'auto'),
(1648, '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'),
(1649, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(1650, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(1651, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(1652, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(1653, 'litespeed.conf.optm-localize', '', 'auto'),
(1654, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(1468, 'mwp_service_key', '92c99772-77ac-4f65-9715-7e43095c2834', 'on'),
(159, 'elementor_active_kit', '6', 'auto'),
(160, 'elementor_font_display', 'swap', 'auto'),
(175, '_elementor_onboarding_strings_en', 'a:2:{s:7:\"timeout\";i:1783942416;s:5:\"value\";s:5201:\"{\"common.continue\":\"Continue\",\"common.skip\":\"Skip\",\"common.back\":\"Back\",\"common.finish\":\"Finish\",\"common.loading\":\"Loading\\u2026\",\"common.upgrade\":\"Upgrade\",\"common.close_onboarding\":\"Close onboarding\",\"common.installed\":\"Installed\",\"common.recommended\":\"Recommended\",\"error.failed_mark_exit\":\"Failed to mark user exit.\",\"error.failed_complete_step\":\"Failed to complete step.\",\"error.pro_install_failed\":\"Couldn\'t install Elementor Pro. Please try again later\",\"error.theme_install_failed\":\"Theme installation didn\'t complete. Please try again later\",\"login.title\":\"Let\\u2019s get to work.\",\"login.sign_in\":\"Sign in to Elementor\",\"login.continue_another_way\":\"Continue another way\",\"login.continue_as_guest\":\"Continue as a guest\",\"steps.building_for.title\":\"Who are you building for?\",\"steps.building_for.greeting_with_name\":\"Hey %1$s %2$s Let\\u2019s get your site set up.\",\"steps.building_for.greeting_without_name\":\"Hey%s Let\\u2019s get your site set up.\",\"steps.building_for.option_myself\":\"Myself or someone I know\",\"steps.building_for.option_business\":\"My business or workplace\",\"steps.building_for.option_client\":\"A client\",\"steps.building_for.option_exploring\":\"Just exploring\",\"steps.site_about.title\":\"What is your site about?\",\"steps.site_about.subtitle\":\"Choose anything that applies.\",\"steps.site_about.option_small_med_business\":\"Small-Med Business\",\"steps.site_about.option_online_store\":\"Online store\",\"steps.site_about.option_company_site\":\"Company site\",\"steps.site_about.option_blog\":\"Blog\",\"steps.site_about.option_landing_page\":\"Landing page\",\"steps.site_about.option_booking\":\"Booking\",\"steps.site_about.option_organization\":\"Organization\",\"steps.site_about.option_other\":\"Other\",\"steps.site_about.greeting_myself\":\"Got it! We\\u2019ll keep things simple.\",\"steps.site_about.greeting_business\":\"Great! Let\\u2019s set up your business site.\",\"steps.site_about.greeting_client\":\"Nice! Let\\u2019s create something for your client.\",\"steps.site_about.greeting_fallback\":\"Let\\u2019s get started!\",\"steps.experience_level.title\":\"How experienced are you with Elementor?\",\"steps.experience_level.subtitle\":\"This helps us adjust the editor to your workflow.\",\"steps.experience_level.option_beginner\":\"I\\u2019m just getting started\",\"steps.experience_level.option_intermediate\":\"I have some experience\",\"steps.experience_level.option_advanced\":\"I\\u2019m very comfortable with Elementor\",\"steps.theme_selection.title\":\"Start with a theme that fits your needs\",\"steps.theme_selection.subtitle\":\"Hello themes are built to work seamlessly with Elementor.\",\"steps.theme_selection.v2.title\":\"Build faster with Hello Theme\",\"steps.theme_selection.v2.subtitle\":\"Use Elementor\\u2019s lightweight theme for faster setup and full design control.\",\"steps.theme_selection.aria_label\":\"Theme selection\",\"steps.theme_selection.theme_hello_label\":\"Hello\",\"steps.theme_selection.theme_hello_description\":\"A flexible canvas theme you can shape from the ground up\",\"steps.theme_selection.by_elementor\":\"by Elementor\",\"steps.theme_selection.theme_hello_biz_label\":\"Hello Biz\",\"steps.theme_selection.theme_hello_biz_description\":\"A ready-to-start theme with smart layouts and widgets\",\"steps.theme_selection.greeting_beginner\":\"Glad you\\u2019re here!\",\"steps.theme_selection.greeting_default\":\"Great. Let\\u2019s take it to the next step\",\"steps.theme_selection.continue_with_theme\":\"Continue with this theme\",\"steps.theme_selection.v2.continue_with_theme\":\"Continue with Hello\",\"steps.site_features.title\":\"What do you want to include in your site?\",\"steps.site_features.subtitle\":\"We\\u2019ll use this to tailor suggestions for you.\",\"steps.site_features.continue_with_free\":\"Continue with Free\",\"steps.site_features.option_classes_variables\":\"Design system\",\"steps.site_features.option_hello_theme\":\"Hello theme\",\"steps.site_features.option_cookie_consent\":\"Cookie Consent\",\"steps.site_features.option_interactions\":\"Interactions\",\"steps.site_features.option_theme_builder\":\"Theme builder\",\"steps.site_features.option_lead_collection\":\"Forms & leads\",\"steps.site_features.option_custom_code\":\"Custom Code\",\"steps.site_features.option_email_deliverability\":\"Email delivery\",\"steps.site_features.option_ai_generator\":\"AI tools\",\"steps.site_features.option_image_optimization\":\"Image optimization\",\"steps.site_features.option_accessibility_tools\":\"Accessibility\",\"steps.site_features.woocommerce\":\"WooCommerce\",\"steps.site_features.included\":\"Included\",\"steps.site_features.plan_recommendation_one\":\"Nice picks \\ud83d\\ude42 Elementor One has you covered.\",\"steps.site_features.plan_recommendation_pro\":\"Advanced tools? Elementor Pro includes them.\",\"steps.site_features.compare_plans\":\"View plans\",\"pro_install.title\":\"You already have a Pro subscription\",\"pro_install.subtitle\":\"Would you like to install it on this site now?\",\"pro_install.installing\":\"Installing Elementor Pro\\u2026\",\"pro_install.installing_short\":\"Installing\\u2026\",\"pro_install.install_button\":\"Install Pro on this site\",\"pro_install.logo_alt\":\"Elementor + Elementor Pro\",\"pro_install.do_it_later\":\"I\\u2019ll do it later\",\"completion.title\":\"Getting things ready\",\"completion.subtitle\":\"Tailoring the editor to your goals and workflow\\u2026\"}\";}', 'off'),
(164, 'elementor_landing_pages_activation', '0', 'auto'),
(165, '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'),
(166, 'elementor_version', '4.1.4', 'auto'),
(167, 'elementor_install_history', 'a:1:{s:5:\"4.1.4\";i:1783748310;}', 'auto'),
(168, '_elementor_10th_bday_data', 'a:2:{s:7:\"timeout\";i:1783751911;s:5:\"value\";s:483:\"{\"header\":\"Celebrate 10 years of Elementor\",\"content\":\"Unlock more capabilities for less with limited-time savings on selected plans. Offer ends June 17.\",\"cta\":{\"label\":\"Get discounts\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-editor-10bd-easter-egg\\/\"},\"time_frame\":{\"start\":\"6\\/15\\/2026T10:00:00Z\",\"end\":\"6\\/17\\/2026T03:59:59Z\"},\"hero\":\"https:\\/\\/assets.elementor.com\\/10th-bday\\/v1\\/images\\/hero.png\",\"lottie\":\"https:\\/\\/assets.elementor.com\\/10th-bday\\/v1\\/lotties\\/intro.json\"}\";}', 'off'),
(169, '_elementor_pro_free_trial_data', 'a:2:{s:7:\"timeout\";i:1783751911;s:5:\"value\";s:575:\"[{\"status\":\"inactive\",\"heading\":\"You\\u2019ve come this far. Why stop here?\",\"subheading\":\"Elementor Pro Free Trial\",\"introduction\":\"Take your site beyond the basics with a free 7-day Elementor Pro trial with no strings attached:\",\"listItems\":[\"100+ widgets\",\"Theme Builder\",\"Advanced design controls\",\"Custom CSS for pixel-perfect sites - and more\"],\"ctaText\":\"Unlock my free trial\",\"ctaUrl\":\"https:\\/\\/go.elementor.com\\/go-pro-free-trial-popup\\/\",\"secondaryAction\":\"Not now\",\"image\":\"https:\\/\\/assets.elementor.com\\/pro-free-trial-popup\\/v1\\/images\\/free_trial_banner.png\"}]\";}', 'off'),
(170, 'elementor_events_db_version', '1.0.0', 'off'),
(400, 'db_upgraded', '', 'on'),
(1008, 'elementor_safe_mode', '', 'auto');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(445, '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-2)\";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\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}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:\"#fece00\";i:1;s:7:\"#010080\";i:2;s:7:\"#000a1c\";i:3;s:7:\"#494646\";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:1;}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:\"#fece00\";i:1;s:7:\"#010080\";i:2;s:7:\"#000a1c\";i:3;s:7:\"#494646\";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:1;}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:24:\"\'Montserrat\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:11:\"500,200,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: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:18:\"\'Jost\', 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:\"700\";s:4:\"type\";s: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:71;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:51;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:41;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:35;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:29;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:23;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\";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: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:60:\"var( --ast-global-color-primary, 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:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--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:70:\"var( --ast-global-color-subtle-background, var(--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:60:\"var( --ast-global-color-primary, 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:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:36:\"https://mrarif.me/essie/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:70:\"var( --ast-global-color-subtle-background, var(--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:70:\"var( --ast-global-color-subtle-background, var(--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 `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(480, 'can_compress_scripts', '1', 'on');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1463, 'elementor_pro_remote_info_api_data_4.1.2', 'a:2:{s:7:\"timeout\";i:1784018913;s:5:\"value\";s:255210:\"{\"stable_version\":\"4.1.2\",\"last_updated\":\"2026-06-23 14:12:14\",\"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:240519:\\\"<h1>Elementor Pro - by Elementor.com<\\/h1>\\n<h4>4.1.2 - 2026-06-23<\\/h4>\\n<ul>\\n<li>Fix: Email action is not configured correctly when submitting Atomic Forms - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.1.1 - 2026-06-08<\\/h4>\\n<ul>\\n<li>Fix: Live Results item count does not apply correctly on Tablet and Mobile in Search widget<\\/li>\\n<li>Fix: Default animation appears for logged-out users when using an ACF URL dynamic tag in Lottie widget<\\/li>\\n<li>Fix: &quot;Something went wrong&quot; error appears when using Taxonomy Filter with a Loop Grid based on Current Query<\\/li>\\n<\\/ul>\\n<h4>4.1.0 - 2026-05-26<\\/h4>\\n<ul>\\n<li>Tweak: Added Radio Button element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Select element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Date Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Time Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added File Upload element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Webhook URL support to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Improved the default To and From field settings in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Updated the Connected Input ID control to a Select control in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added the Atomic Elements section when editing Loop Grid templates - Atomic Editor<\\/li>\\n<li>Tweak: Added support for dynamic field mentions in email content in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Start and End grid lines for the While Scrolling effect in Interactions - Atomic Editor<\\/li>\\n<li>Tweak: Updated the minimum required WordPress version to 6.8<\\/li>\\n<li>Fix: Custom styles are lost for Atomic elements used in loops - Atomic Editor<\\/li>\\n<li>Fix: Action Log and Page Title are not recorded in Atomic Form submissions - Atomic Editor<\\/li>\\n<li>Fix: Inline editing does not work for Buttons inside Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form cannot be dragged into containers or child containers - Atomic Editor<\\/li>\\n<li>Fix: Pasting content from another site may cause a fatal error with Loop Item Templates<\\/li>\\n<\\/ul>\\n<h4>4.0.4 - 2026-04-28<\\/h4>\\n<ul>\\n<li>Fix: Flexbox and Div Block do not work with display conditions - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.3 - 2026-04-20<\\/h4>\\n<ul>\\n<li>Tweak: Updated base style font styling in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Submit button not working inside popups in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Forms fail to send when using ACF Email dynamic tag - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.2 - 2026-04-13<\\/h4>\\n<ul>\\n<li>Fix: Interactions apply only to the first matching element instead of all instances on the page - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.1 - 2026-04-01<\\/h4>\\n<ul>\\n<li>Fix: Exposed text properties appear empty in existing components - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/35357\\\">#35357<\\/a>)<\\/li>\\n<li>Fix: Cannot publish existing components with overridable properties - Atomic Editor<\\/li>\\n<li>Fix: Unexpected characters appear when deleting attribute values using backspace - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.0 - 2026-03-30<\\/h4>\\n<ul>\\n<li>New: Introducing Atomic Forms using composable Atomic elements - create flexible form layouts by combining individual field elements - Atomic Editor<\\/li>\\n<li>New: Introducing Interactions with new triggers and custom effects for dynamic experiences - create animations based on user scroll and user behavior - Atomic Editor<\\/li>\\n<li>Tweak: Component creation is available for Pro users - Atomic Editor<\\/li>\\n<li>Tweak: Added the ability to detach Components into editable layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added support for custom fonts in typography controls - Atomic Editor<\\/li>\\n<li>Fix: Unable to paste content into the Custom CSS field - Atomic Editor<\\/li>\\n<li>Fix: Error when assigning a dynamic custom field to a component&#39;s inner element in Components - Atomic Editor<\\/li>\\n<\\/ul>\\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&#39;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&#39;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 &#39;Avoid Duplicates&#39; 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&#39;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: &#39;Reading Settings&#39; 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&#39;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 &#39;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 &#39;Structure&#39; 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 &#39;Copy&#39;, &#39;Paste&#39;, and &#39;Clear&#39; 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 &#39;Create Template&#39; button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the &#39;Loader&#39; 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 &#39;Current Query&#39; 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: &#39;Editing Mode&#39; 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 &#39;User IP&#39; and &#39;User Agent&#39; 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&#39;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&#39;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 &#39;self-hosted&#39; 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: &#39;Fallback: Recent Posts&#39; 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&#39;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&#39;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 &#39;Active item state&#39; 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&#39;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 &#39;Gap between slides&#39; 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&#39;t edit page when using &#39;Content Tabs&#39; and &#39;Section&#39; 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&#39; 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&#39;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 &#39;Show up to X times&#39; 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 &#39;Equal height&#39; 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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn&#39;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&#39;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&#39;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&#39;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&#39;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&#39;t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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>Elementor\\\\Utils::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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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 &#39;Max Height&#39; 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 &#39;Reply To&#39; 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 &#39;Max Height&#39; 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%5D\\\">#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&#39;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&#39;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&#39;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 &#39;get_create_url&#39; 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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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=&quot;navigation&quot;<\\/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&#39;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&#39;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&#39;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&#39;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 &#39;Hide Title&#39; 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&#39;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&#39;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&#39;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 &#39;View Cart&#39; 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 &#39;Current Subcategories&#39; 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&#39;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&#39;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&#39;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&#39;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&#39;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&#39;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 &#39;typing&#39; and &#39;clip&#39; 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&#39;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&#39;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>ElementorPro\\\\Modules\\\\Forms\\\\Classes\\\\Action_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&#39;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 - &#39;Link apply on&#39; 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 &#39;0&#39; 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>\\n\\\";}\",\"new_version\":\"4.1.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"6.8\",\"tested\":\"7.0\",\"elementor_requires\":\"3.34\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXNzaWUiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzOTc1NzEyLCJleHAiOjE3ODQwNjIxMTJ9.p3dbxcuDvLaqWuJlqOa0-f1bsORP9WSImM1kT1XqsYE\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXNzaWUiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzOTc1NzEyLCJleHAiOjE3ODQwNjIxMTJ9.p3dbxcuDvLaqWuJlqOa0-f1bsORP9WSImM1kT1XqsYE\\/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:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"},\"requires_php\":\"7.4\"}\";}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1726, '_elementor_design_system_sync_css_meta', 'a:2:{s:4:\"time\";i:1784008795;i:0;b:0;}', 'auto'),
(1501, 'mwp_potential_key', '1baf0091-068b-4b38-b8c2-f0b5167e544c', 'on'),
(1502, 'mwp_potential_key_time', '1783975817', 'on'),
(1499, 'mwp_key_last_used_12479ce7-a71c-4384-816e-9d743c4c2ebe', '1783975816', 'on'),
(1536, 'litespeed.conf.cache', '1', 'auto'),
(1498, 'mwp_communication_keys', 'a:0:{}', 'on'),
(1506, '_site_transient_timeout_n_39dec21697e7fce7d734ebc2c029dbb6bfc7ee', '1784062218', 'off'),
(1316, '_transient_health-check-site-status-result', '{\"good\":25,\"recommended\":1,\"critical\":1}', 'on'),
(173, 'elementor_atomic_widgets_db_version', '1', 'auto'),
(174, 'elementor_global_classes_db_version', '3', 'auto'),
(176, '_elementor_installed_time', '1783748317', 'auto'),
(177, 'elementor_connect_site_key', 'e672ce4ce5743eccd3f68954072323b1', 'auto'),
(178, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:43:\"Introducing Angie: Agentic AI for WordPress\";s:7:\"excerpt\";s:365:\"Meet Angie, agentic AI purpose-built for WordPress. Angie understands your site, connects to your tools, and takes real actions on your behalf. Its first capability, Angie Code, lets you describe any WordPress feature you can imagine and have it built for you in minutes. Production-ready, fully integrated with your site, and safe to test before it ever goes live.\";s:7:\"created\";i:1774270910;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:142:\"https://elementor.com/blog/introducing-angie-agentic-ai-for-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;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:2;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\";}}', 'off'),
(1667, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(1668, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(1669, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(1670, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(1671, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(1672, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(1673, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(1674, 'litespeed.conf.media-vpi', '', 'auto'),
(1675, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(1676, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(1677, 'litespeed.conf.img_optm-auto', '', 'auto'),
(1678, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(1679, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(1680, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(1681, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(1682, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(1683, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(1684, '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'),
(1685, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(1686, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(1687, 'litespeed.conf.crawler', '', 'auto'),
(1688, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(1689, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(1690, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(1691, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(1692, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(1693, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(1694, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(1695, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(1696, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(1697, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(1698, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(1699, 'litespeed.conf.cdn', '', 'auto'),
(1700, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(1701, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/essie\\/wp-content\",\"wp-includes\"]', 'auto'),
(1702, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(1703, 'litespeed.conf.cdn-quic', '', 'auto'),
(1704, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(1705, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(1706, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(1707, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(1708, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(1709, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(1710, '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'),
(1711, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(1712, 'litespeed.conf.qc-nameservers', '', 'auto'),
(1713, 'litespeed.conf.qc-cname', '', 'auto'),
(1714, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(1715, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1784001718}', 'auto'),
(1716, 'litespeed.purge.queue', '-1', 'auto'),
(1717, 'litespeed.purge.queue2', '-1', 'auto'),
(184, 'finished_updating_comment_type', '1', 'auto'),
(193, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1783975712;s:16:\"get_license_data\";i:1784008780;}', 'auto'),
(188, 'elementor_pro_version', '4.1.2', 'auto'),
(189, 'elementor_pro_install_history', 'a:2:{s:5:\"4.0.2\";i:1783748386;s:5:\"4.1.2\";i:1783769180;}', 'auto'),
(190, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(191, '_elementor_pro_installed_time', '1783748387', 'auto'),
(192, 'elementor_submissions_db_version', '5', 'auto'),
(254, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1783979491;s:5:\"value\";s:2273:\"{\"new_version\":\"2.13.5\",\"stable_version\":\"2.13.5\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2026-07-02 06:39:35\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc4NDE2MTI5MTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjZlYjM3ZDk1NDFmNGJiYWYzY2JlZjE4MzczM2VhMTczOmh0dHBzQC8vbXJhcmlmLm1lL2Vzc2llOjA=\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc4NDE2MTI5MTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjZlYjM3ZDk1NDFmNGJiYWYzY2JlZjE4MzczM2VhMTczOmh0dHBzQC8vbXJhcmlmLm1lL2Vzc2llOjA=\",\"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'),
(264, 'bsf_usage_migrated', '1', 'off'),
(265, 'astra-settings', 'a:22:{s:18:\"theme-auto-version\";s:6:\"4.13.6\";s:22:\"is_theme_queue_running\";b:0;s:20:\"headings-font-family\";s:18:\"\'Jost\', sans-serif\";s:21:\"headings-font-variant\";s:11:\"300,600,900\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:71;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:20:\"headings-font-weight\";s:3:\"700\";s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:51;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:41;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:35;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:29;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:23;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:16:\"body-font-family\";s:24:\"\'Montserrat\', sans-serif\";s:17:\"body-font-variant\";s:11:\"500,200,900\";s:16:\"body-font-weight\";s:3:\"400\";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: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:\"#fece00\";i:1;s:7:\"#010080\";i:2;s:7:\"#000a1c\";i:3;s:7:\"#494646\";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:1;}s:12:\"button-color\";s:25:\"var(--ast-global-color-2)\";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)\";}', 'on'),
(266, 'astra_notices_allowed', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(267, 'astra_usage_installed_time', '1783748481', 'off'),
(1722, '_transient_timeout_astra-theme-cron-test-ok', '1784012382', 'off'),
(1723, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(259, 'current_theme', 'Astra Child', 'auto'),
(260, '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:1783748502;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'),
(261, 'theme_switched', '', 'auto'),
(1718, '_site_transient_timeout_wp_theme_files_patterns-8e5e5dd0bc4d5a295f4e3b7a0f3ef0d9', '1784010582', 'off'),
(1719, '_site_transient_wp_theme_files_patterns-8e5e5dd0bc4d5a295f4e3b7a0f3ef0d9', 'a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}', 'off'),
(276, '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'),
(1720, '_site_transient_timeout_wp_theme_files_patterns-5b9c89fc669e16e77495c8f0deb6ffa0', '1784010582', 'off'),
(1721, '_site_transient_wp_theme_files_patterns-5b9c89fc669e16e77495c8f0deb6ffa0', 'a:2:{s:7:\"version\";s:6:\"4.13.6\";s:8:\"patterns\";a:0:{}}', 'off'),
(197, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1783759226;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'),
(1663, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(1664, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(1665, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(1666, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(200, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(201, 'pp_license_status', 'valid', 'auto'),
(202, '_elementor_settings_update_time', '1783748451', 'auto'),
(203, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(204, 'elementor_disable_color_schemes', 'yes', 'auto'),
(205, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(206, 'elementor_allow_tracking_last_update', '1783748451', 'auto'),
(207, 'elementor_allow_tracking', 'no', 'auto'),
(208, 'elementor_google_maps_api_key', '', 'auto'),
(209, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(210, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(211, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(212, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(213, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(214, 'elementor_pro_facebook_app_id', '', 'auto'),
(215, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(216, 'elementor_validate_api_data', '', 'auto'),
(217, 'elementor_pro_drip_api_token', '', 'auto'),
(218, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(219, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(220, 'elementor_pro_getresponse_api_key', '', 'auto'),
(221, 'elementor_pro_convertkit_api_key', '', 'auto'),
(222, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(223, 'elementor_typekit-kit-id', '', 'auto'),
(224, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(225, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(226, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(227, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(228, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(229, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(230, 'elementor_editor_break_lines', '', 'auto'),
(231, 'elementor_unfiltered_files_upload', '1', 'auto'),
(232, 'elementor_google_font', '1', 'auto'),
(233, 'elementor_form-submissions', '', 'auto'),
(234, 'elementor_load_fa4_shim', '', 'auto'),
(235, 'elementor_meta_generator_tag', '', 'auto'),
(236, 'elementor_css_print_method', 'external', 'auto'),
(237, 'elementor_optimized_image_loading', '1', 'auto'),
(238, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(239, 'elementor_lazy_load_background_images', '1', 'auto'),
(240, 'elementor_local_google_fonts', '0', 'auto'),
(241, 'elementor_element_cache_ttl', '24', 'auto'),
(242, 'elementor_experiment-e_panel_promotions', 'default', 'auto'),
(243, 'elementor_experiment-markdown_rendering', 'default', 'auto'),
(244, 'elementor_experiment-container', 'default', 'auto'),
(245, 'elementor_experiment-mega-menu', 'default', 'auto'),
(246, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(247, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(248, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(249, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(250, 'elementor_experiment-nested-elements', 'default', 'auto'),
(282, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(285, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(286, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(253, 'elementor_log', 'a:16:{s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 05:41:00\";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:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-07-11 05:41:00\";i:1;s:19:\"2026-07-11 11:27:09\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783748460\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:85:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"42329\";}s:7:\"\0*\0file\";s:85:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"42329\";}s:32:\"fa16de921296cabab515dcc967a46cd5\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 05:46:42\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:31:\"Element type already registered\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:23;s:14:\"\0*\0times_dates\";a:23:{i:0;s:19:\"2026-07-11 05:46:42\";i:1;s:19:\"2026-07-11 05:47:59\";i:2;s:19:\"2026-07-11 06:23:04\";i:3;s:19:\"2026-07-11 06:23:34\";i:4;s:19:\"2026-07-11 06:59:53\";i:5;s:19:\"2026-07-11 07:13:09\";i:6;s:19:\"2026-07-11 09:06:38\";i:7;s:19:\"2026-07-11 11:08:25\";i:8;s:19:\"2026-07-11 11:23:26\";i:9;s:19:\"2026-07-11 11:38:49\";i:10;s:19:\"2026-07-11 11:43:05\";i:11;s:19:\"2026-07-11 11:45:02\";i:12;s:19:\"2026-07-11 11:54:02\";i:13;s:19:\"2026-07-11 11:54:24\";i:14;s:19:\"2026-07-11 11:57:28\";i:15;s:19:\"2026-07-11 11:59:34\";i:16;s:19:\"2026-07-11 12:00:26\";i:17;s:19:\"2026-07-11 12:00:27\";i:18;s:19:\"2026-07-13 10:20:16\";i:19;s:19:\"2026-07-13 10:26:15\";i:20;s:19:\"2026-07-13 10:33:51\";i:21;s:19:\"2026-07-13 11:09:52\";i:22;s:19:\"2026-07-13 20:08:53\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783748802\";s:7:\"message\";s:31:\"Element type already registered\";s:3:\"url\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"930509\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"930509\";}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-07-11 05:47:00\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:46:\"Undefined array key &quot;editor_post_id&quot;\";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-07-11 05:47:00\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:36:\"Undefined array key \"editor_post_id\"\";s:4:\"file\";s:99:\"/home/mrarqpph/public_html/essie/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:99:\"/home/mrarqpph/public_html/essie/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"658e0a96ebc132ad35af6980a4cf3c20\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 06:23:16\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of null (reading &#039;config&#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-07-11 06:23:16\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783750996\";s:7:\"message\";s:49:\"Cannot read properties of null (reading \'config\')\";s:3:\"url\";s:122:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:4:\"3199\";}s:7:\"\0*\0file\";s:122:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"1\";s:9:\"\0*\0column\";s:4:\"3199\";}s:32:\"f99eb5ed417492ef28b6b3000203a316\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 06:24:00\";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-07-11 06:24:00\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783751040\";s:7:\"message\";s:51:\"Cannot read properties of undefined (reading \'get\')\";s:3:\"url\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"22636\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"22636\";}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 07:29:40\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-07-11 07:29:40\";i:1;s:19:\"2026-07-11 07:29:40\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783754980\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1074331\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1074331\";}s:32:\"e53e08c5f457b52eb49e353e443b81c0\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 07:29:40\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:35:\"this.ui.input.val 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-07-11 07:29:40\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783754980\";s:7:\"message\";s:35:\"this.ui.input.val is not a function\";s:3:\"url\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"248754\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"248754\";}s:32:\"20176940ae701dbf14a5ea3ef67073e8\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 07:34:02\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"Cannot read properties of null (reading &#039;clone&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:9142;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-11 09:06:39\";i:1;s:19:\"2026-07-11 09:06:39\";i:2;s:19:\"2026-07-11 09:06:39\";i:3;s:19:\"2026-07-11 09:06:39\";i:4;s:19:\"2026-07-11 09:06:39\";i:5;s:19:\"2026-07-11 09:06:39\";i:6;s:19:\"2026-07-11 09:06:39\";i:7;s:19:\"2026-07-11 09:06:39\";i:8;s:19:\"2026-07-11 09:06:39\";i:9;s:19:\"2026-07-11 09:06:39\";i:10;s:19:\"2026-07-11 09:06:39\";i:11;s:19:\"2026-07-11 09:06:39\";i:12;s:19:\"2026-07-11 09:06:39\";i:13;s:19:\"2026-07-11 09:06:39\";i:14;s:19:\"2026-07-11 09:06:39\";i:15;s:19:\"2026-07-11 09:06:39\";i:16;s:19:\"2026-07-11 09:06:39\";i:17;s:19:\"2026-07-11 09:06:39\";i:18;s:19:\"2026-07-11 09:06:39\";i:19;s:19:\"2026-07-11 09:06:39\";i:20;s:19:\"2026-07-11 09:06:40\";i:21;s:19:\"2026-07-11 09:06:40\";i:22;s:19:\"2026-07-11 09:06:42\";i:23;s:19:\"2026-07-11 09:06:42\";i:24;s:19:\"2026-07-11 09:06:42\";i:25;s:19:\"2026-07-11 09:06:43\";i:26;s:19:\"2026-07-11 09:06:43\";i:27;s:19:\"2026-07-11 09:06:43\";i:28;s:19:\"2026-07-11 09:06:43\";i:29;s:19:\"2026-07-11 09:06:43\";i:30;s:19:\"2026-07-11 09:06:43\";i:31;s:19:\"2026-07-11 09:06:43\";i:32;s:19:\"2026-07-11 09:06:43\";i:33;s:19:\"2026-07-11 09:06:43\";i:34;s:19:\"2026-07-11 09:06:43\";i:35;s:19:\"2026-07-11 09:06:44\";i:36;s:19:\"2026-07-11 09:06:44\";i:37;s:19:\"2026-07-11 09:06:44\";i:38;s:19:\"2026-07-11 09:06:44\";i:39;s:19:\"2026-07-11 09:07:24\";i:40;s:19:\"2026-07-11 09:07:25\";i:41;s:19:\"2026-07-11 09:07:29\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783755242\";s:7:\"message\";s:48:\"Cannot read properties of null (reading \'clone\')\";s:3:\"url\";s:92:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.8.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"14799\";}s:7:\"\0*\0file\";s:92:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.8.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"14799\";}s:32:\"0a997826a2fbc91e2cea3d61324d249d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 07:34:06\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of null (reading &#039;changestop&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:200;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-11 08:58:05\";i:1;s:19:\"2026-07-11 08:58:06\";i:2;s:19:\"2026-07-11 08:58:09\";i:3;s:19:\"2026-07-11 08:58:13\";i:4;s:19:\"2026-07-11 08:58:15\";i:5;s:19:\"2026-07-11 08:58:15\";i:6;s:19:\"2026-07-11 08:58:19\";i:7;s:19:\"2026-07-11 08:58:22\";i:8;s:19:\"2026-07-11 08:58:24\";i:9;s:19:\"2026-07-11 08:58:25\";i:10;s:19:\"2026-07-11 08:58:27\";i:11;s:19:\"2026-07-11 08:58:30\";i:12;s:19:\"2026-07-11 08:58:30\";i:13;s:19:\"2026-07-11 08:58:31\";i:14;s:19:\"2026-07-11 08:58:34\";i:15;s:19:\"2026-07-11 08:58:34\";i:16;s:19:\"2026-07-11 08:58:35\";i:17;s:19:\"2026-07-11 08:58:36\";i:18;s:19:\"2026-07-11 08:58:37\";i:19;s:19:\"2026-07-11 08:58:45\";i:20;s:19:\"2026-07-11 08:58:46\";i:21;s:19:\"2026-07-11 08:58:49\";i:22;s:19:\"2026-07-11 08:58:53\";i:23;s:19:\"2026-07-11 08:58:53\";i:24;s:19:\"2026-07-11 08:58:57\";i:25;s:19:\"2026-07-11 08:59:00\";i:26;s:19:\"2026-07-11 08:59:01\";i:27;s:19:\"2026-07-11 08:59:01\";i:28;s:19:\"2026-07-11 08:59:08\";i:29;s:19:\"2026-07-11 08:59:10\";i:30;s:19:\"2026-07-11 08:59:13\";i:31;s:19:\"2026-07-11 08:59:15\";i:32;s:19:\"2026-07-11 08:59:16\";i:33;s:19:\"2026-07-11 08:59:20\";i:34;s:19:\"2026-07-11 08:59:23\";i:35;s:19:\"2026-07-11 09:06:30\";i:36;s:19:\"2026-07-11 09:06:32\";i:37;s:19:\"2026-07-11 09:06:33\";i:38;s:19:\"2026-07-11 09:06:36\";i:39;s:19:\"2026-07-11 09:06:38\";i:40;s:19:\"2026-07-11 09:06:38\";i:41;s:19:\"2026-07-11 09:06:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783755246\";s:7:\"message\";s:53:\"Cannot read properties of null (reading \'changestop\')\";s:3:\"url\";s:92:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.8.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"19552\";}s:7:\"\0*\0file\";s:92:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.8.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"19552\";}s:32:\"add341293aaf18712b5a4a4e36376f6d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:08:12\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:36:\"Function utf8_decode() is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:11;s:14:\"\0*\0times_dates\";a:11:{i:0;s:19:\"2026-07-11 11:08:12\";i:1;s:19:\"2026-07-11 11:08:12\";i:2;s:19:\"2026-07-11 11:08:12\";i:3;s:19:\"2026-07-11 11:08:12\";i:4;s:19:\"2026-07-11 11:08:13\";i:5;s:19:\"2026-07-11 11:08:13\";i:6;s:19:\"2026-07-13 10:33:43\";i:7;s:19:\"2026-07-13 10:33:43\";i:8;s:19:\"2026-07-13 10:33:43\";i:9;s:19:\"2026-07-13 10:33:44\";i:10;s:19:\"2026-07-13 10:33:44\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:36:\"Function utf8_decode() is deprecated\";s:4:\"file\";s:96:\"/home/mrarqpph/public_html/essie/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:4:\"line\";i:33;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:96:\"/home/mrarqpph/public_html/essie/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:7:\"\0*\0line\";i:33;}s:32:\"48cbc695607db8bfd269da73c6adfd6b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:26:10\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-07-11 11:26:10\";i:1;s:19:\"2026-07-11 11:26:10\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5bd7e57371a7d5d1c66ee148bc204524\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:26:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-11 11:26:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a35880955fe85f39e82c74f658f8a10e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:26:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-07-11 11:26:20\";i:1;s:19:\"2026-07-11 11:26:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"38033a02a79c974f47019a80fb08b2c9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:26:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-07-11 11:26:20\";i:1;s:19:\"2026-07-11 11:26:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"45dedd8441f831378e8bff341876f40c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:26:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-11 11:26:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e6e076c9d7c1040e07469a28b2906569\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-11 11:58:56\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read properties of null (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-11 11:58:56\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783771136\";s:7:\"message\";s:45:\"Cannot read properties of null (reading \'id\')\";s:3:\"url\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1294448\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1294448\";}}', 'off'),
(342, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:482;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:136;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(492, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(550, 'WPLANG', '', 'auto'),
(551, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(295, '_site_transient_timeout_browser_c33c588009b95570bda142ca18d363d2', '1784353552', 'off'),
(296, '_site_transient_browser_c33c588009b95570bda142ca18d363d2', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"150.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(300, 'elementor_one_client_id', 'e6376a53-428f-47fd-9111-dba3811c0c94', 'off'),
(301, 'elementor_one_client_secret', 'bMO9pXOIF7U-irBrJkERRqC5FP', 'off'),
(302, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvZXNzaWU=', 'off'),
(303, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(304, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1784095181;s:5:\"value\";s:2912:\"{\"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\",\"pro-interactions\",\"atomic-components\",\"atomic-loop\",\"atomic-form\",\"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'),
(305, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1784051981;s:5:\"value\";s:2912:\"{\"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\",\"pro-interactions\",\"atomic-components\",\"atomic-loop\",\"atomic-form\",\"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'),
(306, 'elementor_notes_db_version', '5', 'auto'),
(307, 'e_editor_counter', '24', 'auto');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(308, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1783981196;s:5:\"value\";s:12640:\"[{\"id\":\"angie-super-community\",\"title\":\"Angie Community Library\",\"description\":\"Browse a library of snippets and widgets built by other Angie users, import any of them into your site, without consuming any credits or remix them with a prompt to match your brief. Every snippet is vetted by the Elementor team. You can also submit your own work for the community to discover.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-community.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-community\\/\",\"readMoreText\":\"Browse library\"},{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn more\",\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-atomic-form\\/\"},{\"id\":\"cookie-consent-launch\",\"title\":\"Introducing Cookie Consent\",\"description\":\"Add a cookie consent banner to your site in minutes. Scan for cookies, manage scripts based on visitor consent, and customize the banner to match your site, or design it in the Editor with Elementor Popups. Free to get started, with more features in Elementor One.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cookie-launch.png\",\"chipTags\":[\"New feature\"],\"cta\":\"Get Cookie Consent\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/cookie-consent-in-editor-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"cookiez\\/cookiez.php\",\"operator\":\"!=\"}]]},{\"id\":\"angie-super-admin\",\"title\":\"Super Admin Mode\",\"description\":\"Revolutionize your WordPress workflow with Super Admin Mode. Perform root-level WordPress operations through natural language - bulk post and product updates, PHP error diagnosis, and more.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-super-admin.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-super-admin\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-default\",\"title\":\"The new default\",\"description\":\"New sites now start with version 4.0 and atomic features enabled by default. Existing sites can choose to manually activate. Nothing happens to your existing layouts and sites.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-default.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-revisions\",\"title\":\"Restore snippets precisely with Revisions\",\"description\":\"Restore any previous version of your snippets to its exact saved state. Each time you revise, Angie preserves a complete snapshot of the snippet\'s code, structure, and configuration. Open version history, select any saved state, and return to it in one click.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-notification-revision.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-revisions\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-atomic-form.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-atomic-forms\\/\"},{\"id\":\"angie-cloud-library\",\"title\":\"Introducing Angie Cloud Library\",\"description\":\"Your Angie snippets are now available across every site you manage. Save any asset you build to your account and pull it into a new project in a few clicks, fully editable and ready to adapt. Available to all users with free daily credits.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-cloud-library.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-cloud-library\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-interactions\\/\"},{\"id\":\"4.0-sync-design-system\",\"title\":\"Sync and share design systems\",\"description\":\"Export and import Variables and Classes between sites, and sync them with v3 Global Styles. Maintain a consistent design system across projects and across versions.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-sync-design-system.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-launch\",\"title\":\"Introducing Angie Code.\",\"description\":\"Create custom Elementor widgets, and snippets for custom site functionality from a simple description. Built natively for WordPress, and Elementor. Preview safely, refine through conversation, and publish when ready.\",\"topic\":\"Angie Code\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-launch.png\",\"chipTags\":[\"New launch\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-angie-launch\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"partner-program\",\"title\":\"Partner with Elementor. Grow your business.\",\"description\":\"Join to unlock exclusive access, secure visibility, benefit from marketing opportunities, and create additional revenue from the work you have already done. Join for free and start benefiting!\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/notification-partner.png\",\"chipTags\":[\"Partner Program\"],\"cta\":\"Apply now\",\"ctaLink\":\"https:\\/\\/my.elementor.com\\/agency\\/\"},{\"id\":\"manage-launch\",\"title\":\"Introducing Manage\",\"description\":\"Monitor, optimize and maintain all your sites from one centralized dashboard. Track performance, perform bulk updates and detect security risks to stay ahead of issues.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/manage.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Start free\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/manage\\/whatsnew\"},{\"id\":\"components-3.35\",\"title\":\"Components\",\"description\":\"Build modular, reusable sections that update everywhere and decide how much control to give away to your team or clients.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/components-3-35.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-components-3.35-blog\",\"readMoreText\":\"Learn More\"},{\"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\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"Atomic Editor\"],\"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\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-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\":\"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'),
(1655, 'litespeed.conf.media-lazy', '', 'auto'),
(1656, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(1657, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(1658, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(1659, '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'),
(1660, 'litespeed.conf.media-lqip', '', 'auto'),
(1661, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(1662, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(1525, '_transient_timeout_elementor_migrations_manifest', '1784026945', 'off'),
(1526, '_transient_elementor_migrations_manifest', 'a:2:{s:7:\"version\";s:11:\"4.1.4:4.1.2\";s:8:\"manifest\";a:2:{s:10:\"widgetKeys\";a:2:{s:20:\"e-form-submit-button\";a:1:{i:0;a:2:{s:4:\"from\";s:5:\"label\";s:2:\"to\";s:4:\"text\";}}s:15:\"e-form-textarea\";a:1:{i:0;a:2:{s:4:\"from\";s:9:\"maxlength\";s:2:\"to\";s:6:\"length\";}}}s:9:\"propTypes\";a:9:{s:14:\"string-to-html\";a:3:{s:8:\"fromType\";s:6:\"string\";s:6:\"toType\";s:4:\"html\";s:4:\"path\";s:30:\"operations/string-to-html.json\";}s:14:\"number-to-size\";a:3:{s:8:\"fromType\";s:6:\"number\";s:6:\"toType\";s:4:\"size\";s:4:\"path\";s:30:\"operations/number-to-size.json\";}s:22:\"number-to-number-range\";a:3:{s:8:\"fromType\";s:6:\"number\";s:6:\"toType\";s:12:\"number-range\";s:4:\"path\";s:38:\"operations/number-to-number-range.json\";}s:15:\"html-to-html-v2\";a:3:{s:8:\"fromType\";s:4:\"html\";s:6:\"toType\";s:7:\"html-v2\";s:4:\"path\";s:31:\"operations/html-to-html-v2.json\";}s:18:\"html-v2-to-html-v3\";a:3:{s:8:\"fromType\";s:7:\"html-v2\";s:6:\"toType\";s:7:\"html-v3\";s:4:\"path\";s:34:\"operations/html-v2-to-html-v3.json\";}s:20:\"image-src-to-svg-src\";a:3:{s:8:\"fromType\";s:9:\"image-src\";s:6:\"toType\";s:7:\"svg-src\";s:4:\"path\";s:36:\"operations/image-src-to-svg-src.json\";}s:19:\"config-to-config-v2\";a:3:{s:8:\"fromType\";s:6:\"config\";s:6:\"toType\";s:9:\"config-v2\";s:4:\"path\";s:35:\"operations/config-to-config-v2.json\";}s:15:\"email-to-emails\";a:3:{s:8:\"fromType\";s:5:\"email\";s:6:\"toType\";s:6:\"emails\";s:4:\"path\";s:31:\"operations/email-to-emails.json\";}s:21:\"string-to-font-family\";a:3:{s:8:\"fromType\";s:6:\"string\";s:6:\"toType\";s:11:\"font-family\";s:4:\"path\";s:37:\"operations/string-to-font-family.json\";}}}}', 'off'),
(321, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1791524797', 'off'),
(322, '_transient__elementor_ab_test_plg_site_mailer_submission', '1', 'off'),
(401, '_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-7.0.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-7.0.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-7.0.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-7.0.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"7.0.1\";s:7:\"version\";s:5:\"7.0.1\";s:11:\"php_version\";s:3:\"7.4\";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:1783975712;s:15:\"version_checked\";s:5:\"7.0.1\";s:12:\"translations\";a:0:{}}', 'off'),
(340, '_astra_customizer_published_timestamps', 'a:7:{i:0;i:1783749182;i:1;i:1783749257;i:2;i:1783749341;i:3;i:1783749415;i:4;i:1783749439;i:5;i:1783753002;i:6;i:1783753031;}', 'off'),
(341, 'astra_usage_events_pending', 'a:1:{i:0;a:4:{s:10:\"event_name\";s:26:\"first_customizer_published\";s:11:\"event_value\";s:6:\"4.13.6\";s:10:\"properties\";a:0:{}s:4:\"date\";s:19:\"2026-07-11 05:53:02\";}}', 'auto'),
(339, '_elementor_element_cache_unique_id', 'fa0fa1316addc32800d4c23fd490c0da', 'auto'),
(350, '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:\"#fece00\";i:1;s:7:\"#010080\";i:2;s:7:\"#000a1c\";i:3;s:7:\"#494646\";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:1;}', 'on');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(359, '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:21:{s:4:\"tmpl\";i:731;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:732;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:733;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:734;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:735;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:736;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:737;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:738;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:739;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:740;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:741;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:742;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:743;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:744;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:745;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:746;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:747;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:748;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:749;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:750;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:751;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:752;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:753;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:754;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:755;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:756;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:757;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:758;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:759;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:760;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:761;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:762;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:763;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:764;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:765;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:766;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:767;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:768;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:791;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:792;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:793;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:794;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:813;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:26:\"minimum_hello_plus_version\";s: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:43;a:21:{s:4:\"tmpl\";i:814;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:815;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:816;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:817;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:818;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:819;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:26:\"minimum_hello_plus_version\";s: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:49;a:21:{s:4:\"tmpl\";i:820;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:821;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:822;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:578;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:619;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:625;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:626;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:627;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:628;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:629;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:630;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:631;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:632;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:633;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:634;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:635;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:636;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:637;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:26:\"minimum_hello_plus_version\";s: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:67;a:21:{s:4:\"tmpl\";i:638;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:26:\"minimum_hello_plus_version\";s: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:68;a:21:{s:4:\"tmpl\";i:639;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:640;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:641;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:642;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:643;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:644;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:645;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:646;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:647;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:648;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:649;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:650;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:651;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:652;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:653;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:657;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:658;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:659;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:660;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:661;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:662;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:663;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:664;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:665;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:666;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:667;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:668;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:669;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:670;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:671;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:672;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:673;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:674;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:675;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:676;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:677;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:678;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:679;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:680;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:681;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:682;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:683;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:684;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:685;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:686;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:687;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:688;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:689;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:690;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:691;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:692;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:21:{s:4:\"tmpl\";i:693;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:694;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:695;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:696;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:697;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:698;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:21:{s:4:\"tmpl\";i:699;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:700;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:701;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:702;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:703;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:704;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:705;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:706;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:707;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:708;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:709;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:710;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:711;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:712;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:713;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:714;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:715;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:716;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:21:{s:4:\"tmpl\";i:717;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:21:{s:4:\"tmpl\";i:718;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:719;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:720;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:721;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:722;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:723;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:724;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:725;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:726;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:727;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:728;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:729;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:730;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:482;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:593;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:21:{s:4:\"tmpl\";i:769;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:26:\"minimum_hello_plus_version\";s: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:160;a:21:{s:4:\"tmpl\";i:770;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:771;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:772;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:21:{s:4:\"tmpl\";i:773;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:21:{s:4:\"tmpl\";i:774;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:21:{s:4:\"tmpl\";i:775;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:26:\"minimum_hello_plus_version\";s: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:166;a:21:{s:4:\"tmpl\";i:776;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:777;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:778;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:779;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:21:{s:4:\"tmpl\";i:795;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:26:\"minimum_hello_plus_version\";s: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:171;a:21:{s:4:\"tmpl\";i:798;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:420;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:334;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:21:{s:4:\"tmpl\";i:481;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:21:{s:4:\"tmpl\";i:581;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:21:{s:4:\"tmpl\";i:803;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:26:\"minimum_hello_plus_version\";s: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:177;a:21:{s:4:\"tmpl\";i:421;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:590;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:21:{s:4:\"tmpl\";i:599;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:26:\"minimum_hello_plus_version\";s: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:180;a:21:{s:4:\"tmpl\";i:445;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:582;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:21:{s:4:\"tmpl\";i:608;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:26:\"minimum_hello_plus_version\";s: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:183;a:21:{s:4:\"tmpl\";i:422;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:26:\"minimum_hello_plus_version\";s: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:184;a:21:{s:4:\"tmpl\";i:589;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:21:{s:4:\"tmpl\";i:606;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:355;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:584;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:612;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:796;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:387;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:381;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:583;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:797;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:318;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:591;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:594;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:493;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:586;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:21:{s:4:\"tmpl\";i:801;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:21:{s:4:\"tmpl\";i:811;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:512;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:592;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:433;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:587;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:610;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:354;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:588;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:607;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:463;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:585;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:604;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:328;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:580;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:605;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:492;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:513;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:812;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:808;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:410;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:21:{s:4:\"tmpl\";i:518;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:26:\"minimum_hello_plus_version\";s: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:221;a:21:{s:4:\"tmpl\";i:480;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:573;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:21:{s:4:\"tmpl\";i:804;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:26:\"minimum_hello_plus_version\";s: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:224;a:21:{s:4:\"tmpl\";i:571;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:602;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:380;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:572;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:597;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:443;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:575;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:21:{s:4:\"tmpl\";i:615;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:26:\"minimum_hello_plus_version\";s: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:232;a:21:{s:4:\"tmpl\";i:353;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:577;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:609;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:456;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:576;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:611;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:462;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:574;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:21:{s:4:\"tmpl\";i:784;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:21:{s:4:\"tmpl\";i:800;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:26:\"minimum_hello_plus_version\";s: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:242;a:21:{s:4:\"tmpl\";i:532;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:21:{s:4:\"tmpl\";i:537;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:806;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:799;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:26:\"minimum_hello_plus_version\";s: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:246;a:21:{s:4:\"tmpl\";i:266;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:21:{s:4:\"tmpl\";i:310;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:21:{s:4:\"tmpl\";i:525;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:21:{s:4:\"tmpl\";i:267;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:21:{s:4:\"tmpl\";i:516;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:787;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:21:{s:4:\"tmpl\";i:540;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:595;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:264;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:21:{s:4:\"tmpl\";i:531;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:26:\"minimum_hello_plus_version\";s: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:256;a:21:{s:4:\"tmpl\";i:618;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:263;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:21:{s:4:\"tmpl\";i:515;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:26:\"minimum_hello_plus_version\";s: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:259;a:21:{s:4:\"tmpl\";i:621;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:514;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:601;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:802;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:21:{s:4:\"tmpl\";i:268;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:529;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:21:{s:4:\"tmpl\";i:260;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:21:{s:4:\"tmpl\";i:517;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:21:{s:4:\"tmpl\";i:810;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:809;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:541;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:261;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:21:{s:4:\"tmpl\";i:523;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:805;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:21:{s:4:\"tmpl\";i:807;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:526;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:265;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:21:{s:4:\"tmpl\";i:522;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:21:{s:4:\"tmpl\";i:603;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:520;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:617;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:262;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:21:{s:4:\"tmpl\";i:527;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:26:\"minimum_hello_plus_version\";s: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:282;a:21:{s:4:\"tmpl\";i:623;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:95;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:21:{s:4:\"tmpl\";i:534;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:26:\"minimum_hello_plus_version\";s: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:285;a:21:{s:4:\"tmpl\";i:614;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:21:{s:4:\"tmpl\";i:538;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:613;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:786;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:21:{s:4:\"tmpl\";i:528;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:26:\"minimum_hello_plus_version\";s: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:290;a:21:{s:4:\"tmpl\";i:150;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:569;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:782;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:783;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:90;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:21:{s:4:\"tmpl\";i:524;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:21:{s:4:\"tmpl\";i:533;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:789;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:781;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:91;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:300;a:21:{s:4:\"tmpl\";i:521;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:21:{s:4:\"tmpl\";i:519;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:790;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:564;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:93;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:21:{s:4:\"tmpl\";i:560;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:788;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:21:{s:4:\"tmpl\";i:780;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:21:{s:4:\"tmpl\";i:106;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:309;a:21:{s:4:\"tmpl\";i:551;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:565;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:785;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:546;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:620;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:105;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:568;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:600;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:94;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:21:{s:4:\"tmpl\";i:566;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:616;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:21:{s:4:\"tmpl\";i:553;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:598;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:98;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:323;a:21:{s:4:\"tmpl\";i:563;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:596;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:21:{s:4:\"tmpl\";i:544;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:103;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:21:{s:4:\"tmpl\";i:567;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:26:\"minimum_hello_plus_version\";s: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:328;a:21:{s:4:\"tmpl\";i:622;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:21:{s:4:\"tmpl\";i:570;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:554;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:104;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:332;a:21:{s:4:\"tmpl\";i:556;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:21:{s:4:\"tmpl\";i:99;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:334;a:21:{s:4:\"tmpl\";i:558;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:21:{s:4:\"tmpl\";i:562;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:561;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:579;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:97;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:339;a:21:{s:4:\"tmpl\";i:504;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:21:{s:4:\"tmpl\";i:555;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:26:\"minimum_hello_plus_version\";s: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:341;a:21:{s:4:\"tmpl\";i:92;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:342;a:21:{s:4:\"tmpl\";i:505;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:559;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:21:{s:4:\"tmpl\";i:506;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:552;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:507;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:557;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:96;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:349;a:21:{s:4:\"tmpl\";i:508;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:21:{s:4:\"tmpl\";i:547;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:26:\"minimum_hello_plus_version\";s: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:351;a:21:{s:4:\"tmpl\";i:501;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:545;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:100;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:354;a:21:{s:4:\"tmpl\";i:502;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:549;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:21:{s:4:\"tmpl\";i:503;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:548;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:138;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:21:{s:4:\"tmpl\";i:484;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:21:{s:4:\"tmpl\";i:539;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:139;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:362;a:21:{s:4:\"tmpl\";i:485;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:21:{s:4:\"tmpl\";i:550;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:486;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:535;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:483;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:536;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:101;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:21:{s:4:\"tmpl\";i:487;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:21:{s:4:\"tmpl\";i:530;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:26:\"minimum_hello_plus_version\";s: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:371;a:21:{s:4:\"tmpl\";i:149;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:21:{s:4:\"tmpl\";i:488;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:21:{s:4:\"tmpl\";i:542;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:470;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:543;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:102;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:21:{s:4:\"tmpl\";i:473;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:21:{s:4:\"tmpl\";i:469;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:276;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:21:{s:4:\"tmpl\";i:472;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:21:{s:4:\"tmpl\";i:471;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:277;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:21:{s:4:\"tmpl\";i:464;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:21:{s:4:\"tmpl\";i:465;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:278;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:21:{s:4:\"tmpl\";i:466;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:21:{s:4:\"tmpl\";i:654;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:468;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:279;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:21:{s:4:\"tmpl\";i:467;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:21:{s:4:\"tmpl\";i:624;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:280;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:449;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:281;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:448;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:447;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:282;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:446;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:655;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:26:\"minimum_hello_plus_version\";s: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:21:{s:4:\"tmpl\";i:283;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:439;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:656;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:284;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:436;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:435;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:434;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:426;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:438;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:437;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:427;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:444;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:428;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:425;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:429;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:424;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:430;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:431;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:432;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:411;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:423;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:412;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:21:{s:4:\"tmpl\";i:511;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:21:{s:4:\"tmpl\";i:413;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:414;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:400;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:510;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:823;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:401;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:402;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:509;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:234;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:403;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:388;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:77;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:389;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:390;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:80;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:391;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:392;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:393;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:84;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:21:{s:4:\"tmpl\";i:394;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:21:{s:4:\"tmpl\";i:81;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:395;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:396;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:397;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:83;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:21:{s:4:\"tmpl\";i:398;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:21:{s:4:\"tmpl\";i:89;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:21:{s:4:\"tmpl\";i:399;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:21:{s:4:\"tmpl\";i:369;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:79;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:366;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:362;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:88;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:21:{s:4:\"tmpl\";i:368;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:21:{s:4:\"tmpl\";i:367;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:365;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:86;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:21:{s:4:\"tmpl\";i:364;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:21:{s:4:\"tmpl\";i:363;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:78;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:327;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:75;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:21:{s:4:\"tmpl\";i:326;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:21:{s:4:\"tmpl\";i:325;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:324;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:76;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:21:{s:4:\"tmpl\";i:301;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:21:{s:4:\"tmpl\";i:85;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:82;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:346;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:350;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:304;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:87;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:476;a:21:{s:4:\"tmpl\";i:315;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:21:{s:4:\"tmpl\";i:25;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:478;a:21:{s:4:\"tmpl\";i:347;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:21:{s:4:\"tmpl\";i:23;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:480;a:21:{s:4:\"tmpl\";i:345;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:21:{s:4:\"tmpl\";i:351;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:127;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:300;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:314;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:128;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:30;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:352;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:348;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:69;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:299;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:313;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:317;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:71;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:349;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:74;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:303;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:316;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:125;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:312;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:22;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:302;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:126;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:24;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:504;a:21:{s:4:\"tmpl\";i:311;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:21:{s:4:\"tmpl\";i:26;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:32;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:27;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:29;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:31;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:28;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:206;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:227;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:226;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:225;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:211;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:167;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:221;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:220;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:218;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:219;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:204;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:207;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:222;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:212;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:213;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:208;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:223;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:224;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:66;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:216;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:67;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:68;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:73;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:205;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:129;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:217;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:209;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:210;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:107;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:215;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:214;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:489;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:490;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:491;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:309;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:308;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:307;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:306;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:305;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:113;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:116;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:117;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:112;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:114;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:115;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:118;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:119;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:110;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:111;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:141;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:135;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:140;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:159;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:160;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:134;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:133;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:109;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:108;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:132;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:158;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:157;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:461;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:460;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:459;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:458;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:457;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:244;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:240;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:239;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:238;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:237;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:236;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:285;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:245;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:246;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:247;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:248;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:249;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:243;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:242;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:241;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:235;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:230;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:231;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:323;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:322;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:321;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:320;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:319;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:228;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:256;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:251;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:250;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:286;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:229;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:258;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:252;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:253;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:259;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:257;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:254;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:255;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:165;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:121;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:120;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:72;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:166;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:162;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:164;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:163;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:161;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:123;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:124;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:122;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:407;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:408;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:409;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:406;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:405;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:404;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:440;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:441;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:442;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:344;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:343;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:342;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:341;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:340;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:339;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:450;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:451;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:452;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:454;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:455;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:453;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:379;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:378;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:375;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:374;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:376;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:373;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:372;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:371;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:370;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:377;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:419;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:416;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:418;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:417;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:415;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:382;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:383;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:384;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:386;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:385;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:336;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:335;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:333;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:332;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:338;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:331;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:330;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:337;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:329;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:190;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:202;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:191;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:192;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:193;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:194;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:196;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:197;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:199;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:201;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:203;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:61;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:195;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:198;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:200;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:189;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:34;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:39;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:41;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:42;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:44;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:46;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:36;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:38;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:40;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:43;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:45;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:33;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:35;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:37;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:474;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:475;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:291;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:21:{s:4:\"tmpl\";i:476;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:21:{s:4:\"tmpl\";i:292;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:477;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:293;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:21:{s:4:\"tmpl\";i:478;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:21:{s:4:\"tmpl\";i:479;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:12;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:13;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:18;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:20;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:3;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:17;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:15;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:14;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:1;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:8;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:6;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:4;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:21;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:19;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:16;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:2;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:153;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:11;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:10;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:9;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:7;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:5;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:269;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:270;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:271;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:272;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:273;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:274;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:275;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:233;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:232;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:295;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:294;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:296;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:297;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:298;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:148;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:155;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:154;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:287;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:156;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:288;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:143;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:289;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:147;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:290;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:144;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:145;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:142;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:146;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:131;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:130;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:152;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:62;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:65;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:63;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:70;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:64;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:58;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:55;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:51;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:136;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:48;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:56;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:151;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:57;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:59;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:52;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:60;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:54;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:53;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:50;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:49;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:137;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:47;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:179;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:175;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:173;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:171;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:188;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:186;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:169;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:187;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:170;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:172;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:174;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:176;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:177;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:178;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:168;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:180;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:184;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:185;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:182;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:183;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:181;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:358;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:359;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:357;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:360;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:361;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:356;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:496;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:497;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:498;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:499;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:495;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:500;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{s:4:\"tmpl\";i:494;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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";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 `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(364, 'elementor_angie_guide_auto_shown', 'yes', 'auto'),
(989, '_transient_elementor_rollback_versions_4.1.4', 'a:30:{i:0;s:5:\"4.1.3\";i:1;s:5:\"4.1.2\";i:2;s:5:\"4.1.1\";i:3;s:5:\"4.1.0\";i:4;s:5:\"4.0.9\";i:5;s:5:\"4.0.8\";i:6;s:5:\"4.0.7\";i:7;s:5:\"4.0.6\";i:8;s:5:\"4.0.5\";i:9;s:5:\"4.0.4\";i:10;s:5:\"4.0.3\";i:11;s:5:\"4.0.2\";i:12;s:5:\"4.0.1\";i:13;s:5:\"4.0.0\";i:14;s:6:\"3.35.9\";i:15;s:6:\"3.35.8\";i:16;s:6:\"3.35.7\";i:17;s:6:\"3.35.6\";i:18;s:6:\"3.35.5\";i:19;s:6:\"3.35.4\";i:20;s:6:\"3.35.3\";i:21;s:6:\"3.35.2\";i:22;s:6:\"3.35.1\";i:23;s:6:\"3.35.0\";i:24;s:6:\"3.34.4\";i:25;s:6:\"3.34.3\";i:26;s:6:\"3.34.2\";i:27;s:6:\"3.34.1\";i:28;s:6:\"3.34.0\";i:29;s:6:\"3.33.6\";}', 'off'),
(990, '_transient_timeout_elementor_pro_rollback_versions_4.1.2', '1784374002', 'off'),
(991, '_transient_elementor_pro_rollback_versions_4.1.2', 'a:30:{i:0;s:5:\"4.1.2\";i:1;s:5:\"4.1.1\";i:2;s:5:\"4.1.0\";i:3;s:5:\"4.0.4\";i:4;s:5:\"4.0.3\";i:5;s:5:\"4.0.2\";i:6;s:5:\"4.0.1\";i:7;s:5:\"4.0.0\";i:8;s:6:\"3.35.1\";i:9;s:6:\"3.35.0\";i:10;s:6:\"3.34.4\";i:11;s:6:\"3.34.3\";i:12;s:6:\"3.34.2\";i:13;s:6:\"3.34.1\";i:14;s:6:\"3.34.0\";i:15;s:6:\"3.33.2\";i:16;s:6:\"3.33.1\";i:17;s:6:\"3.33.0\";i:18;s:6:\"3.32.3\";i:19;s:6:\"3.32.2\";i:20;s:6:\"3.32.1\";i:21;s:6:\"3.32.0\";i:22;s:6:\"3.31.3\";i:23;s:6:\"3.31.2\";i:24;s:6:\"3.31.1\";i:25;s:6:\"3.31.0\";i:26;s:6:\"3.30.1\";i:27;s:6:\"3.30.0\";i:28;s:6:\"3.29.2\";i:29;s:6:\"3.29.1\";}', 'off'),
(992, 'elementor_clear_cache', '', 'auto'),
(993, 'elementor_reset_api_data', '', 'auto'),
(995, 'elementor_enable_inspector', '', 'auto'),
(996, 'elementor_replace_url', '', 'auto'),
(997, 'elementor_rollback', '', 'auto'),
(998, 'elementor_rollback_pro_separator', '', 'auto'),
(999, 'elementor_rollback_pro', '', 'auto'),
(1000, 'elementor_beta', 'no', 'auto'),
(1001, 'elementor_maintenance_mode_mode', '', 'auto'),
(1002, 'elementor_maintenance_mode_exclude_mode', 'logged_in', 'auto');

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

--
-- Table structure for table `wpe_postmeta`
--

CREATE TABLE `wpe_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 `wpe_postmeta`
--

INSERT INTO `wpe_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', '1783974499:1'),
(13, 10, '_wp_page_template', 'elementor_header_footer'),
(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, 12, '_edit_last', '1'),
(25, 12, '_edit_lock', '1783748423:1'),
(26, 12, '_wp_page_template', 'elementor_header_footer'),
(27, 12, 'site-post-title', 'disabled'),
(33, 12, 'ast-featured-img', 'disabled'),
(29, 12, 'site-sidebar-layout', 'no-sidebar'),
(30, 12, 'ast-site-content-layout', 'full-width-container'),
(31, 12, 'site-content-style', 'default'),
(32, 12, 'site-sidebar-style', 'default'),
(34, 12, 'astra-migrate-meta-layouts', 'set'),
(35, 12, 'ast-breadcrumbs-content', 'disabled'),
(36, 12, 'theme-transparent-header-meta', 'default'),
(37, 14, '_edit_last', '1'),
(38, 14, '_edit_lock', '1783748449:1'),
(39, 14, '_wp_page_template', 'elementor_header_footer'),
(40, 14, 'site-post-title', 'disabled'),
(46, 14, 'ast-featured-img', 'disabled'),
(42, 14, 'site-sidebar-layout', 'no-sidebar'),
(43, 14, 'ast-site-content-layout', 'full-width-container'),
(44, 14, 'site-content-style', 'default'),
(45, 14, 'site-sidebar-style', 'default'),
(47, 14, 'astra-migrate-meta-layouts', 'set'),
(48, 14, 'ast-breadcrumbs-content', 'disabled'),
(49, 14, 'theme-transparent-header-meta', 'default'),
(50, 16, '_edit_last', '1'),
(51, 16, '_edit_lock', '1783748469:1'),
(52, 16, '_wp_page_template', 'elementor_header_footer'),
(53, 16, 'site-post-title', 'disabled'),
(59, 16, 'ast-featured-img', 'disabled'),
(55, 16, 'site-sidebar-layout', 'no-sidebar'),
(56, 16, 'ast-site-content-layout', 'full-width-container'),
(57, 16, 'site-content-style', 'default'),
(58, 16, 'site-sidebar-style', 'default'),
(60, 16, 'astra-migrate-meta-layouts', 'set'),
(61, 16, 'ast-breadcrumbs-content', 'disabled'),
(62, 16, 'theme-transparent-header-meta', 'default'),
(63, 18, '_menu_item_type', 'post_type'),
(64, 18, '_menu_item_menu_item_parent', '0'),
(65, 18, '_menu_item_object_id', '10'),
(66, 18, '_menu_item_object', 'page'),
(67, 18, '_menu_item_target', ''),
(68, 18, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(69, 18, '_menu_item_xfn', ''),
(70, 18, '_menu_item_url', ''),
(110, 10, 'ast-title-bar-display', 'disabled'),
(6007, 505, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6006, 505, '_menu_item_target', ''),
(6005, 505, '_menu_item_object', 'custom'),
(6004, 505, '_menu_item_object_id', '505'),
(6003, 505, '_menu_item_menu_item_parent', '0'),
(6002, 505, '_menu_item_type', 'custom'),
(6001, 14, '_wp_desired_post_slug', 'services'),
(6000, 14, '_wp_trash_meta_time', '1783768882'),
(5999, 14, '_wp_trash_meta_status', 'publish'),
(5998, 16, '_wp_desired_post_slug', 'contact'),
(108, 10, '_elementor_edit_mode', 'builder'),
(90, 21, '_menu_item_type', 'post_type'),
(91, 21, '_menu_item_menu_item_parent', '0'),
(92, 21, '_menu_item_object_id', '2'),
(93, 21, '_menu_item_object', 'page'),
(94, 21, '_menu_item_target', ''),
(95, 21, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(96, 21, '_menu_item_xfn', ''),
(97, 21, '_menu_item_url', ''),
(98, 21, '_menu_item_orphaned', '1783748645'),
(5997, 16, '_wp_trash_meta_time', '1783768879'),
(5996, 16, '_wp_trash_meta_status', 'publish'),
(5995, 12, '_wp_desired_post_slug', 'about-us'),
(5994, 12, '_wp_trash_meta_time', '1783768876'),
(5993, 12, '_wp_trash_meta_status', 'publish'),
(109, 10, '_astra_content_layout_flag', 'disabled'),
(111, 10, '_elementor_template_type', 'wp-page'),
(112, 10, '_elementor_version', '4.1.4'),
(113, 10, '_elementor_pro_version', '4.1.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(189, 10, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D81C\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(115, 10, '_elementor_global_class_usage_indexed', '1'),
(116, 10, '_elementor_global_class_usage_indexed_preview', '1'),
(117, 10, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(161, 6, '_elementor_global_class_usage_indexed', '1'),
(162, 6, '_elementor_global_class_usage_indexed_preview', '1'),
(119, 6, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(120, 6, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(132, 6, '_edit_lock', '1783771200:1'),
(133, 6, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(134, 6, '_elementor_global_classes_labels', 'a:0:{}'),
(135, 6, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(136, 24, '_elementor_edit_mode', 'builder'),
(137, 24, '_elementor_template_type', 'kit'),
(139, 24, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(140, 24, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(141, 24, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(142, 24, '_elementor_global_classes_labels', 'a:0:{}'),
(143, 24, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(144, 6, '_wp_page_template', 'default'),
(145, 6, '_elementor_page_settings', 'a:20:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Essie\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1440;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:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:16:\"site_description\";s:7:\"Welcome\";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;}'),
(146, 6, '_elementor_data', '[]'),
(147, 25, '_elementor_edit_mode', 'builder'),
(148, 25, '_elementor_template_type', 'kit'),
(150, 25, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(151, 25, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(152, 25, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(153, 25, '_elementor_global_classes_labels', 'a:0:{}'),
(154, 25, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(155, 25, '_wp_page_template', 'default'),
(156, 25, '_elementor_page_settings', 'a:11:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Essie\";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;}'),
(157, 25, '_elementor_data', '[]'),
(159, 6, '_elementor_version', '4.1.4'),
(160, 6, '_elementor_pro_version', '4.1.2'),
(167, 26, '_wp_page_template', 'elementor_header_footer'),
(168, 26, '_elementor_edit_mode', 'builder'),
(169, 26, '_elementor_template_type', 'wp-page'),
(170, 26, '_elementor_version', '4.1.4'),
(171, 26, '_elementor_pro_version', '4.0.2'),
(172, 26, '_elementor_page_settings', 'a:0:{}'),
(173, 26, '_elementor_global_class_usage_indexed', '1'),
(174, 26, '_elementor_global_class_usage_indexed_preview', '1'),
(175, 26, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(178, 27, '_wp_page_template', 'elementor_header_footer'),
(179, 27, '_elementor_edit_mode', 'builder'),
(180, 27, '_elementor_template_type', 'wp-page'),
(181, 27, '_elementor_version', '4.1.4'),
(182, 27, '_elementor_pro_version', '4.0.2'),
(183, 27, '_elementor_page_settings', 'a:0:{}'),
(184, 27, '_elementor_global_class_usage_indexed', '1'),
(185, 27, '_elementor_global_class_usage_indexed_preview', '1'),
(186, 27, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(190, 28, '_wp_page_template', 'elementor_header_footer'),
(191, 28, '_elementor_edit_mode', 'builder'),
(192, 28, '_elementor_template_type', 'wp-page'),
(193, 28, '_elementor_version', '4.1.4'),
(194, 28, '_elementor_pro_version', '4.0.2'),
(195, 28, '_elementor_global_class_usage_indexed', '1'),
(196, 28, '_elementor_global_class_usage_indexed_preview', '1'),
(197, 28, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(200, 28, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(204, 29, '_edit_lock', '1783749180:1'),
(205, 29, '_wp_trash_meta_status', 'publish'),
(206, 29, '_wp_trash_meta_time', '1783749182'),
(207, 30, '_wp_page_template', 'elementor_header_footer'),
(208, 30, '_elementor_edit_mode', 'builder'),
(209, 30, '_elementor_template_type', 'wp-page'),
(210, 30, '_elementor_version', '4.1.4'),
(211, 30, '_elementor_pro_version', '4.0.2'),
(212, 30, '_elementor_global_class_usage_indexed', '1'),
(213, 30, '_elementor_global_class_usage_indexed_preview', '1'),
(214, 30, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(216, 30, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(217, 30, '_elementor_page_settings', 'a:0:{}'),
(220, 31, '_wp_page_template', 'elementor_header_footer'),
(221, 31, '_elementor_edit_mode', 'builder'),
(222, 31, '_elementor_template_type', 'wp-page'),
(223, 31, '_elementor_version', '4.1.4'),
(224, 31, '_elementor_pro_version', '4.0.2'),
(225, 31, '_elementor_global_class_usage_indexed', '1'),
(226, 31, '_elementor_global_class_usage_indexed_preview', '1'),
(227, 31, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(229, 31, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(230, 31, '_elementor_page_settings', 'a:0:{}'),
(233, 32, '_wp_page_template', 'elementor_header_footer'),
(234, 32, '_elementor_edit_mode', 'builder'),
(235, 32, '_elementor_template_type', 'wp-page'),
(236, 32, '_elementor_version', '4.1.4'),
(237, 32, '_elementor_pro_version', '4.0.2'),
(238, 32, '_elementor_global_class_usage_indexed', '1'),
(239, 32, '_elementor_global_class_usage_indexed_preview', '1'),
(240, 32, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(242, 32, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"277deba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(348, 10, '_oembed_3c5ae053a522c8a35b832b2d2f41a868', '{{unknown}}'),
(248, 33, '_wp_trash_meta_status', 'publish'),
(249, 33, '_wp_trash_meta_time', '1783749257'),
(250, 34, '_edit_lock', '1783749319:1'),
(251, 34, '_wp_trash_meta_status', 'publish'),
(252, 34, '_wp_trash_meta_time', '1783749341'),
(253, 35, '_edit_lock', '1783749379:1'),
(254, 35, '_wp_trash_meta_status', 'publish'),
(255, 35, '_wp_trash_meta_time', '1783749415'),
(256, 36, '_edit_lock', '1783749439:1'),
(257, 36, '_wp_trash_meta_status', 'publish'),
(258, 36, '_wp_trash_meta_time', '1783749439'),
(310, 40, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(311, 43, '_wp_page_template', 'elementor_header_footer'),
(312, 43, '_elementor_edit_mode', 'builder'),
(313, 43, '_elementor_template_type', 'wp-page'),
(314, 43, '_elementor_version', '4.1.4'),
(315, 43, '_elementor_pro_version', '4.0.2'),
(316, 43, '_elementor_global_class_usage_indexed', '1'),
(317, 43, '_elementor_global_class_usage_indexed_preview', '1'),
(318, 43, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(320, 43, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"277deba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(321, 43, '_elementor_page_settings', 'a:0:{}'),
(323, 44, '_wp_page_template', 'elementor_header_footer'),
(324, 44, '_elementor_edit_mode', 'builder'),
(325, 44, '_elementor_template_type', 'wp-page'),
(326, 44, '_elementor_version', '4.1.4'),
(327, 44, '_elementor_pro_version', '4.0.2'),
(328, 44, '_elementor_global_class_usage_indexed', '1'),
(329, 44, '_elementor_global_class_usage_indexed_preview', '1'),
(330, 44, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(332, 44, '_elementor_data', '[{\"id\":\"50606cd\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"feb9c2f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a8c3ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4c7829d\"}],\"pp_display_conditions\":[{\"_id\":\"4c8aaa7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0ad246\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"277deba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"64ec084\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93736ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b8e61f5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78083c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"93a2558\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(333, 44, '_elementor_page_settings', 'a:0:{}'),
(565, 63, '_wp_page_template', 'elementor_header_footer'),
(566, 63, '_elementor_edit_mode', 'builder'),
(567, 63, '_elementor_template_type', 'wp-page'),
(568, 63, '_elementor_version', '4.1.4'),
(569, 63, '_elementor_pro_version', '4.0.2'),
(570, 63, '_elementor_global_class_usage_indexed', '1'),
(571, 63, '_elementor_global_class_usage_indexed_preview', '1'),
(572, 63, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(524, 60, '_wp_page_template', 'elementor_header_footer'),
(485, 57, '_wp_page_template', 'elementor_header_footer'),
(486, 57, '_elementor_edit_mode', 'builder'),
(487, 57, '_elementor_template_type', 'wp-page'),
(488, 57, '_elementor_version', '4.1.4'),
(489, 57, '_elementor_pro_version', '4.0.2'),
(490, 57, '_elementor_global_class_usage_indexed', '1'),
(491, 57, '_elementor_global_class_usage_indexed_preview', '1'),
(492, 57, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(494, 57, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(453, 54, '_elementor_version', '4.1.4'),
(454, 54, '_elementor_pro_version', '4.0.2'),
(455, 54, '_elementor_global_class_usage_indexed', '1'),
(456, 54, '_elementor_global_class_usage_indexed_preview', '1'),
(457, 54, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(459, 54, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(376, 48, '_wp_page_template', 'elementor_header_footer'),
(377, 48, '_elementor_edit_mode', 'builder'),
(378, 48, '_elementor_template_type', 'wp-page'),
(379, 48, '_elementor_version', '4.1.4'),
(380, 48, '_elementor_pro_version', '4.0.2'),
(381, 48, '_elementor_global_class_usage_indexed', '1'),
(382, 48, '_elementor_global_class_usage_indexed_preview', '1'),
(383, 48, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(385, 48, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(335, 45, '_wp_page_template', 'elementor_header_footer'),
(336, 45, '_elementor_edit_mode', 'builder'),
(337, 45, '_elementor_template_type', 'wp-page'),
(338, 45, '_elementor_version', '4.1.4'),
(339, 45, '_elementor_pro_version', '4.0.2'),
(340, 45, '_elementor_global_class_usage_indexed', '1'),
(341, 45, '_elementor_global_class_usage_indexed_preview', '1'),
(342, 45, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(344, 45, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"16160cdd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#A8A6A617\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64e1d6c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13858f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bc60e22\"}],\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"13efdd3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"369f4cad\",\"elType\":\"widget\",\"settings\":{\"rating_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0c294f1\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"rating\"},{\"id\":\"5f263593\",\"elType\":\"widget\",\"settings\":{\"title\":\"+200 Google Reviews\",\"header_size\":\"span\",\"pp_display_conditions\":[{\"_id\":\"7fa8ca9\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_background_color\":\"#A8A6A617\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0000001F\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(827, 82, '_elementor_page_settings', 'a:0:{}'),
(828, 83, '_wp_page_template', 'elementor_header_footer'),
(829, 83, '_elementor_edit_mode', 'builder'),
(830, 83, '_elementor_template_type', 'wp-page'),
(831, 83, '_elementor_version', '4.1.4'),
(832, 83, '_elementor_pro_version', '4.0.2'),
(833, 83, '_elementor_global_class_usage_indexed', '1'),
(834, 83, '_elementor_global_class_usage_indexed_preview', '1'),
(835, 83, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(836, 83, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(452, 54, '_elementor_template_type', 'wp-page'),
(389, 49, '_wp_page_template', 'elementor_header_footer'),
(390, 49, '_elementor_edit_mode', 'builder'),
(391, 49, '_elementor_template_type', 'wp-page'),
(392, 49, '_elementor_version', '4.1.4'),
(393, 49, '_elementor_pro_version', '4.0.2'),
(394, 49, '_elementor_global_class_usage_indexed', '1'),
(395, 49, '_elementor_global_class_usage_indexed_preview', '1'),
(396, 49, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(398, 49, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(350, 46, '_wp_page_template', 'elementor_header_footer'),
(351, 46, '_elementor_edit_mode', 'builder'),
(352, 46, '_elementor_template_type', 'wp-page'),
(353, 46, '_elementor_version', '4.1.4'),
(354, 46, '_elementor_pro_version', '4.0.2'),
(355, 46, '_elementor_global_class_usage_indexed', '1'),
(356, 46, '_elementor_global_class_usage_indexed_preview', '1'),
(357, 46, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(359, 46, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"16160cdd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#A8A6A617\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64e1d6c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13858f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bc60e22\"}],\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"13efdd3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"369f4cad\",\"elType\":\"widget\",\"settings\":{\"rating_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0c294f1\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"rating\"},{\"id\":\"5f263593\",\"elType\":\"widget\",\"settings\":{\"title\":\"+200 Google Reviews\",\"header_size\":\"span\",\"pp_display_conditions\":[{\"_id\":\"7fa8ca9\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_background_color\":\"#A8A6A617\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0000001F\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1374, 131, '_elementor_global_class_usage_indexed_preview', '1'),
(280, 40, '_elementor_edit_mode', 'builder'),
(281, 40, '_elementor_template_type', 'container'),
(282, 40, '_elementor_version', '4.1.4'),
(283, 40, '_elementor_pro_version', '4.0.2'),
(284, 40, '_elementor_page_settings', 'a:0:{}'),
(285, 40, '_elementor_global_class_usage_indexed', '1'),
(286, 40, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(287, 40, '_elementor_data', '[{\"id\":\"21881a25\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"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\":\"5709b363\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"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\":\"4e8c2bec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#A8A6A617\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64e1d6c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13858f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bc60e22\"}],\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"13efdd3\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"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\":\"72d943f7\",\"elType\":\"widget\",\"settings\":{\"rating_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0c294f1\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"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\":\"rating\"},{\"id\":\"96122a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"+200 Google Reviews\",\"header_size\":\"span\",\"pp_display_conditions\":[{\"_id\":\"7fa8ca9\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_background_color\":\"#A8A6A617\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0000001F\",\"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\"}],\"isInner\":true},{\"id\":\"4b7ba824\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"first_part_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"first_part_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"first_part_bg_slideshow_gallery\":[],\"second_part_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"second_part_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"second_part_bg_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\":\"pp-dual-heading\"},{\"id\":\"e32a096\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"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\":\"text-editor\"},{\"id\":\"25f71638\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"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-list\"},{\"id\":\"6bc82235\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet_extra\":\"wrap\",\"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\":\"3617a75a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"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\"},{\"id\":\"5493c697\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"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\":true},{\"id\":\"765c39f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"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\":\"1e10018b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"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\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(288, 41, '_elementor_edit_mode', 'builder'),
(289, 41, '_elementor_template_type', 'container'),
(290, 41, '_elementor_version', '4.1.4'),
(291, 41, '_elementor_pro_version', '4.0.2'),
(292, 41, '_elementor_page_settings', 'a:0:{}'),
(293, 41, '_elementor_global_class_usage_indexed', '1'),
(294, 41, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(295, 41, '_elementor_data', '[{\"id\":\"21881a25\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"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\":\"5709b363\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"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\":\"4e8c2bec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#A8A6A617\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64e1d6c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13858f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bc60e22\"}],\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"13efdd3\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"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\":\"72d943f7\",\"elType\":\"widget\",\"settings\":{\"rating_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0c294f1\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"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\":\"rating\"},{\"id\":\"96122a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"+200 Google Reviews\",\"header_size\":\"span\",\"pp_display_conditions\":[{\"_id\":\"7fa8ca9\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_background_color\":\"#A8A6A617\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0000001F\",\"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\"}],\"isInner\":true},{\"id\":\"4b7ba824\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"first_part_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"first_part_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"first_part_bg_slideshow_gallery\":[],\"second_part_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"second_part_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"second_part_bg_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\":\"pp-dual-heading\"},{\"id\":\"e32a096\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"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\":\"text-editor\"},{\"id\":\"25f71638\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"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-list\"},{\"id\":\"6bc82235\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet_extra\":\"wrap\",\"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\":\"3617a75a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"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\"},{\"id\":\"5493c697\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"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\":true},{\"id\":\"765c39f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"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\":\"1e10018b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"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-07-08 to 2026-07-14\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"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\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(360, 46, '_elementor_page_settings', 'a:0:{}'),
(363, 47, '_wp_page_template', 'elementor_header_footer'),
(364, 47, '_elementor_edit_mode', 'builder'),
(365, 47, '_elementor_template_type', 'wp-page'),
(366, 47, '_elementor_version', '4.1.4'),
(367, 47, '_elementor_pro_version', '4.0.2'),
(368, 47, '_elementor_global_class_usage_indexed', '1'),
(369, 47, '_elementor_global_class_usage_indexed_preview', '1'),
(370, 47, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(372, 47, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"16160cdd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#A8A6A617\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64e1d6c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13858f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bc60e22\"}],\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"13efdd3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"369f4cad\",\"elType\":\"widget\",\"settings\":{\"rating_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0c294f1\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"rating\"},{\"id\":\"5f263593\",\"elType\":\"widget\",\"settings\":{\"title\":\"+200 Google Reviews\",\"header_size\":\"span\",\"pp_display_conditions\":[{\"_id\":\"7fa8ca9\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_background_color\":\"#A8A6A617\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0000001F\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(373, 47, '_elementor_page_settings', 'a:0:{}'),
(1632, 153, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1680, 157, '_wp_page_template', 'elementor_header_footer'),
(1485, 141, '_wp_attached_file', '2026/07/call_1034131.svg'),
(1486, 141, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2445;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1425, 136, '_elementor_edit_mode', 'builder'),
(1426, 136, '_elementor_template_type', 'header'),
(1427, 137, '_elementor_edit_mode', 'builder'),
(1428, 137, '_elementor_template_type', 'header'),
(1429, 136, '_elementor_version', '4.1.4'),
(1430, 136, '_elementor_pro_version', '4.1.2'),
(1431, 136, '_elementor_global_class_usage_indexed', '1'),
(1432, 136, '_elementor_global_class_usage_indexed_preview', '1'),
(1433, 136, '_astra_content_layout_flag', 'disabled'),
(1443, 136, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"},\"z_index\":9},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}],\"flex_justify_content_mobile_extra\":\"center\",\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(877) 480-1449\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:8774801449\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Essieslovingtouch@gmail.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:Essieslovingtouch@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1435, 136, 'ast-title-bar-display', 'disabled'),
(1436, 136, 'ast-featured-img', 'disabled'),
(1437, 136, 'ast-site-content-layout', 'full-width-container'),
(1438, 136, 'site-sidebar-layout', 'no-sidebar'),
(1440, 136, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1441, 136, '_edit_lock', '1783940971:1'),
(1442, 136, '_wp_page_template', 'default'),
(399, 49, '_elementor_page_settings', 'a:0:{}'),
(400, 50, '_wp_page_template', 'elementor_header_footer'),
(401, 50, '_elementor_edit_mode', 'builder'),
(402, 50, '_elementor_template_type', 'wp-page'),
(403, 50, '_elementor_version', '4.1.4'),
(404, 50, '_elementor_pro_version', '4.0.2'),
(405, 50, '_elementor_global_class_usage_indexed', '1'),
(406, 50, '_elementor_global_class_usage_indexed_preview', '1'),
(407, 50, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(409, 50, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"first_typography_font_weight\":\"900\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"first_typography_font_family\":\"Playfair Display\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(410, 50, '_elementor_page_settings', 'a:0:{}'),
(450, 54, '_wp_page_template', 'elementor_header_footer'),
(451, 54, '_elementor_edit_mode', 'builder'),
(411, 51, '_wp_page_template', 'elementor_header_footer'),
(412, 51, '_elementor_edit_mode', 'builder'),
(413, 51, '_elementor_template_type', 'wp-page'),
(414, 51, '_elementor_version', '4.1.4'),
(415, 51, '_elementor_pro_version', '4.0.2'),
(416, 51, '_elementor_global_class_usage_indexed', '1'),
(417, 51, '_elementor_global_class_usage_indexed_preview', '1'),
(418, 51, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(420, 51, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"first_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(463, 55, '_wp_page_template', 'elementor_header_footer'),
(464, 55, '_elementor_edit_mode', 'builder'),
(465, 55, '_elementor_template_type', 'wp-page'),
(466, 55, '_elementor_version', '4.1.4'),
(467, 55, '_elementor_pro_version', '4.0.2'),
(468, 55, '_elementor_global_class_usage_indexed', '1'),
(469, 55, '_elementor_global_class_usage_indexed_preview', '1'),
(470, 55, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(472, 55, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(424, 52, '_wp_page_template', 'elementor_header_footer'),
(425, 52, '_elementor_edit_mode', 'builder'),
(426, 52, '_elementor_template_type', 'wp-page'),
(427, 52, '_elementor_version', '4.1.4'),
(428, 52, '_elementor_pro_version', '4.0.2'),
(429, 52, '_elementor_global_class_usage_indexed', '1'),
(430, 52, '_elementor_global_class_usage_indexed_preview', '1'),
(431, 52, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(433, 52, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"first_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(434, 52, '_elementor_page_settings', 'a:0:{}'),
(437, 53, '_wp_page_template', 'elementor_header_footer'),
(438, 53, '_elementor_edit_mode', 'builder'),
(439, 53, '_elementor_template_type', 'wp-page'),
(440, 53, '_elementor_version', '4.1.4'),
(441, 53, '_elementor_pro_version', '4.0.2'),
(442, 53, '_elementor_global_class_usage_indexed', '1'),
(443, 53, '_elementor_global_class_usage_indexed_preview', '1'),
(444, 53, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(446, 53, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42cb7c51\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Redi Urgent \",\"second_text\":\"Care\",\"heading_html_tag\":\"h1\",\"second_text_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"first_typography_typography\":\"custom\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1c2a80d\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"second_typography_font_family\":\"Playfair Display\",\"second_typography_font_weight\":\"100\",\"second_typography_font_style\":\"italic\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_mobile_extra\":\"center\",\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"first_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"first_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"second_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"second_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"first_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"second_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"first_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(447, 53, '_elementor_page_settings', 'a:0:{}'),
(804, 81, '_wp_page_template', 'elementor_header_footer'),
(805, 81, '_elementor_edit_mode', 'builder'),
(806, 81, '_elementor_template_type', 'wp-page'),
(807, 81, '_elementor_version', '4.1.4'),
(808, 81, '_elementor_pro_version', '4.0.2'),
(809, 81, '_elementor_global_class_usage_indexed', '1'),
(810, 81, '_elementor_global_class_usage_indexed_preview', '1'),
(811, 81, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(812, 81, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(473, 55, '_elementor_page_settings', 'a:0:{}'),
(474, 56, '_wp_page_template', 'elementor_header_footer'),
(475, 56, '_elementor_edit_mode', 'builder'),
(476, 56, '_elementor_template_type', 'wp-page'),
(477, 56, '_elementor_version', '4.1.4'),
(478, 56, '_elementor_pro_version', '4.0.2'),
(479, 56, '_elementor_global_class_usage_indexed', '1'),
(480, 56, '_elementor_global_class_usage_indexed_preview', '1'),
(481, 56, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(483, 56, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e3816b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"pp_display_conditions\":[{\"_id\":\"d02c4a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f91c78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"04a3561\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_color\":\"#334155D9\",\"__globals__\":{\"text_color\":\"\"},\"align_mobile_extra\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":754,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3264f4ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d3a0073\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.870281,-75.354125&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"5f8aca3\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(484, 56, '_elementor_page_settings', 'a:0:{}'),
(585, 64, '_elementor_global_class_usage_indexed', '1'),
(586, 64, '_elementor_global_class_usage_indexed_preview', '1'),
(587, 64, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(647, 69, '_wp_page_template', 'elementor_header_footer'),
(753, 76, '_elementor_page_settings', 'a:0:{}'),
(754, 77, '_wp_page_template', 'elementor_header_footer'),
(755, 77, '_elementor_edit_mode', 'builder'),
(756, 77, '_elementor_template_type', 'wp-page'),
(757, 77, '_elementor_version', '4.1.4'),
(758, 77, '_elementor_pro_version', '4.0.2'),
(759, 77, '_elementor_global_class_usage_indexed', '1'),
(760, 77, '_elementor_global_class_usage_indexed_preview', '1'),
(761, 77, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(762, 77, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(580, 64, '_wp_page_template', 'elementor_header_footer'),
(581, 64, '_elementor_edit_mode', 'builder'),
(582, 64, '_elementor_template_type', 'wp-page'),
(583, 64, '_elementor_version', '4.1.4'),
(584, 64, '_elementor_pro_version', '4.0.2'),
(498, 58, '_wp_page_template', 'elementor_header_footer'),
(499, 58, '_elementor_edit_mode', 'builder'),
(500, 58, '_elementor_template_type', 'wp-page'),
(501, 58, '_elementor_version', '4.1.4'),
(502, 58, '_elementor_pro_version', '4.0.2'),
(503, 58, '_elementor_global_class_usage_indexed', '1'),
(504, 58, '_elementor_global_class_usage_indexed_preview', '1'),
(505, 58, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(507, 58, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(508, 58, '_elementor_page_settings', 'a:0:{}'),
(1638, 154, '_elementor_edit_mode', 'builder'),
(1639, 154, '_elementor_template_type', 'header'),
(1640, 154, '_elementor_version', '4.1.4'),
(1641, 154, '_elementor_pro_version', '4.0.2'),
(1642, 154, '_elementor_global_class_usage_indexed', '1'),
(1643, 154, '_elementor_global_class_usage_indexed_preview', '1'),
(1644, 154, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1645, 154, '_wp_page_template', 'default'),
(1646, 154, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(511, 59, '_wp_page_template', 'elementor_header_footer'),
(512, 59, '_elementor_edit_mode', 'builder'),
(513, 59, '_elementor_template_type', 'wp-page'),
(514, 59, '_elementor_version', '4.1.4'),
(515, 59, '_elementor_pro_version', '4.0.2'),
(516, 59, '_elementor_global_class_usage_indexed', '1'),
(517, 59, '_elementor_global_class_usage_indexed_preview', '1'),
(518, 59, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(520, 59, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(521, 59, '_elementor_page_settings', 'a:0:{}'),
(801, 80, '_elementor_page_settings', 'a:0:{}'),
(525, 60, '_elementor_edit_mode', 'builder'),
(526, 60, '_elementor_template_type', 'wp-page'),
(527, 60, '_elementor_version', '4.1.4'),
(528, 60, '_elementor_pro_version', '4.0.2'),
(529, 60, '_elementor_global_class_usage_indexed', '1'),
(530, 60, '_elementor_global_class_usage_indexed_preview', '1'),
(531, 60, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(533, 60, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(539, 61, '_wp_page_template', 'elementor_header_footer'),
(540, 61, '_elementor_edit_mode', 'builder'),
(541, 61, '_elementor_template_type', 'wp-page'),
(542, 61, '_elementor_version', '4.1.4'),
(543, 61, '_elementor_pro_version', '4.0.2'),
(544, 61, '_elementor_global_class_usage_indexed', '1'),
(545, 61, '_elementor_global_class_usage_indexed_preview', '1'),
(546, 61, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(548, 61, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(549, 61, '_elementor_page_settings', 'a:0:{}'),
(552, 62, '_wp_page_template', 'elementor_header_footer'),
(553, 62, '_elementor_edit_mode', 'builder'),
(554, 62, '_elementor_template_type', 'wp-page'),
(555, 62, '_elementor_version', '4.1.4'),
(556, 62, '_elementor_pro_version', '4.0.2'),
(557, 62, '_elementor_global_class_usage_indexed', '1'),
(558, 62, '_elementor_global_class_usage_indexed_preview', '1'),
(559, 62, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(561, 62, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b282770\",\"elType\":\"widget\",\"settings\":{\"text\":\"see our patient results\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/rediurgentcare\\/patient-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(562, 62, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(574, 63, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(589, 64, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(590, 64, '_elementor_page_settings', 'a:0:{}'),
(1648, 154, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(791, 80, '_wp_page_template', 'elementor_header_footer'),
(792, 80, '_elementor_edit_mode', 'builder'),
(793, 80, '_elementor_template_type', 'wp-page'),
(794, 80, '_elementor_version', '4.1.4'),
(795, 80, '_elementor_pro_version', '4.0.2'),
(796, 80, '_elementor_global_class_usage_indexed', '1'),
(797, 80, '_elementor_global_class_usage_indexed_preview', '1'),
(798, 80, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(799, 80, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(593, 65, '_wp_page_template', 'elementor_header_footer'),
(594, 65, '_elementor_edit_mode', 'builder'),
(595, 65, '_elementor_template_type', 'wp-page'),
(596, 65, '_elementor_version', '4.1.4'),
(597, 65, '_elementor_pro_version', '4.0.2'),
(598, 65, '_elementor_global_class_usage_indexed', '1'),
(599, 65, '_elementor_global_class_usage_indexed_preview', '1'),
(600, 65, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(602, 65, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(603, 65, '_elementor_page_settings', 'a:0:{}'),
(606, 66, '_wp_page_template', 'elementor_header_footer'),
(607, 66, '_elementor_edit_mode', 'builder'),
(608, 66, '_elementor_template_type', 'wp-page'),
(609, 66, '_elementor_version', '4.1.4'),
(610, 66, '_elementor_pro_version', '4.0.2'),
(611, 66, '_elementor_global_class_usage_indexed', '1'),
(612, 66, '_elementor_global_class_usage_indexed_preview', '1'),
(613, 66, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(615, 66, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3403, 288, '_elementor_version', '4.1.4'),
(3404, 288, '_elementor_pro_version', '4.0.2'),
(3405, 288, '_elementor_global_class_usage_indexed', '1'),
(3406, 288, '_elementor_global_class_usage_indexed_preview', '1'),
(3407, 288, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3408, 288, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(621, 67, '_wp_page_template', 'elementor_header_footer'),
(622, 67, '_elementor_edit_mode', 'builder'),
(623, 67, '_elementor_template_type', 'wp-page'),
(624, 67, '_elementor_version', '4.1.4'),
(625, 67, '_elementor_pro_version', '4.0.2'),
(626, 67, '_elementor_global_class_usage_indexed', '1'),
(627, 67, '_elementor_global_class_usage_indexed_preview', '1'),
(628, 67, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(630, 67, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(631, 67, '_elementor_page_settings', 'a:0:{}'),
(788, 79, '_elementor_page_settings', 'a:0:{}'),
(1752, 162, '_elementor_edit_mode', 'builder'),
(1654, 155, '_wp_page_template', 'elementor_header_footer'),
(1655, 155, '_elementor_edit_mode', 'builder'),
(1656, 155, '_elementor_template_type', 'wp-page'),
(1657, 155, '_elementor_version', '4.1.4'),
(1658, 155, '_elementor_pro_version', '4.0.2'),
(1659, 155, '_elementor_global_class_usage_indexed', '1'),
(1660, 155, '_elementor_global_class_usage_indexed_preview', '1'),
(1661, 155, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1662, 155, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(634, 68, '_wp_page_template', 'elementor_header_footer'),
(635, 68, '_elementor_edit_mode', 'builder'),
(636, 68, '_elementor_template_type', 'wp-page'),
(637, 68, '_elementor_version', '4.1.4'),
(638, 68, '_elementor_pro_version', '4.0.2'),
(639, 68, '_elementor_global_class_usage_indexed', '1'),
(640, 68, '_elementor_global_class_usage_indexed_preview', '1'),
(641, 68, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(643, 68, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(644, 68, '_elementor_page_settings', 'a:0:{}'),
(648, 69, '_elementor_edit_mode', 'builder'),
(649, 69, '_elementor_template_type', 'wp-page'),
(650, 69, '_elementor_version', '4.1.4'),
(651, 69, '_elementor_pro_version', '4.0.2'),
(652, 69, '_elementor_global_class_usage_indexed', '1'),
(653, 69, '_elementor_global_class_usage_indexed_preview', '1'),
(654, 69, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(656, 69, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(839, 84, '_wp_page_template', 'elementor_header_footer'),
(817, 82, '_wp_page_template', 'elementor_header_footer'),
(818, 82, '_elementor_edit_mode', 'builder'),
(819, 82, '_elementor_template_type', 'wp-page'),
(820, 82, '_elementor_version', '4.1.4'),
(821, 82, '_elementor_pro_version', '4.0.2'),
(822, 82, '_elementor_global_class_usage_indexed', '1'),
(823, 82, '_elementor_global_class_usage_indexed_preview', '1'),
(824, 82, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(825, 82, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(778, 79, '_wp_page_template', 'elementor_header_footer'),
(779, 79, '_elementor_edit_mode', 'builder'),
(780, 79, '_elementor_template_type', 'wp-page'),
(781, 79, '_elementor_version', '4.1.4'),
(782, 79, '_elementor_pro_version', '4.0.2'),
(783, 79, '_elementor_global_class_usage_indexed', '1'),
(784, 79, '_elementor_global_class_usage_indexed_preview', '1'),
(785, 79, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(786, 79, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(662, 70, '_wp_page_template', 'elementor_header_footer'),
(663, 70, '_elementor_edit_mode', 'builder'),
(664, 70, '_elementor_template_type', 'wp-page'),
(665, 70, '_elementor_version', '4.1.4'),
(666, 70, '_elementor_pro_version', '4.0.2'),
(667, 70, '_elementor_global_class_usage_indexed', '1'),
(668, 70, '_elementor_global_class_usage_indexed_preview', '1'),
(669, 70, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(671, 70, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(672, 70, '_elementor_page_settings', 'a:0:{}'),
(675, 71, '_wp_page_template', 'elementor_header_footer'),
(676, 71, '_elementor_edit_mode', 'builder'),
(677, 71, '_elementor_template_type', 'wp-page'),
(678, 71, '_elementor_version', '4.1.4'),
(679, 71, '_elementor_pro_version', '4.0.2'),
(680, 71, '_elementor_global_class_usage_indexed', '1'),
(681, 71, '_elementor_global_class_usage_indexed_preview', '1'),
(682, 71, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(684, 71, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(685, 71, '_elementor_page_settings', 'a:0:{}'),
(688, 72, '_wp_page_template', 'elementor_header_footer'),
(689, 72, '_elementor_edit_mode', 'builder'),
(690, 72, '_elementor_template_type', 'wp-page'),
(691, 72, '_elementor_version', '4.1.4'),
(692, 72, '_elementor_pro_version', '4.0.2'),
(693, 72, '_elementor_global_class_usage_indexed', '1'),
(694, 72, '_elementor_global_class_usage_indexed_preview', '1'),
(695, 72, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(697, 72, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(703, 73, '_wp_page_template', 'elementor_header_footer'),
(704, 73, '_elementor_edit_mode', 'builder'),
(705, 73, '_elementor_template_type', 'wp-page'),
(706, 73, '_elementor_version', '4.1.4'),
(707, 73, '_elementor_pro_version', '4.0.2'),
(708, 73, '_elementor_global_class_usage_indexed', '1'),
(709, 73, '_elementor_global_class_usage_indexed_preview', '1'),
(710, 73, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(751, 76, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(752, 76, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(712, 73, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(713, 73, '_elementor_page_settings', 'a:0:{}'),
(716, 74, '_wp_page_template', 'elementor_header_footer'),
(717, 74, '_elementor_edit_mode', 'builder'),
(718, 74, '_elementor_template_type', 'wp-page'),
(719, 74, '_elementor_version', '4.1.4'),
(720, 74, '_elementor_pro_version', '4.0.2'),
(721, 74, '_elementor_global_class_usage_indexed', '1'),
(722, 74, '_elementor_global_class_usage_indexed_preview', '1'),
(723, 74, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(747, 76, '_elementor_version', '4.1.4'),
(748, 76, '_elementor_pro_version', '4.0.2'),
(749, 76, '_elementor_global_class_usage_indexed', '1'),
(750, 76, '_elementor_global_class_usage_indexed_preview', '1'),
(725, 74, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(726, 74, '_elementor_page_settings', 'a:0:{}'),
(763, 77, '_elementor_page_settings', 'a:0:{}'),
(764, 78, '_wp_page_template', 'elementor_header_footer'),
(765, 78, '_elementor_edit_mode', 'builder'),
(766, 78, '_elementor_template_type', 'wp-page'),
(767, 78, '_elementor_version', '4.1.4'),
(768, 78, '_elementor_pro_version', '4.0.2'),
(769, 78, '_elementor_global_class_usage_indexed', '1'),
(770, 78, '_elementor_global_class_usage_indexed_preview', '1'),
(771, 78, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(772, 78, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(729, 75, '_wp_page_template', 'elementor_header_footer'),
(730, 75, '_elementor_edit_mode', 'builder'),
(731, 75, '_elementor_template_type', 'wp-page'),
(732, 75, '_elementor_version', '4.1.4'),
(733, 75, '_elementor_pro_version', '4.0.2'),
(734, 75, '_elementor_global_class_usage_indexed', '1'),
(735, 75, '_elementor_global_class_usage_indexed_preview', '1'),
(736, 75, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(744, 76, '_wp_page_template', 'elementor_header_footer'),
(745, 76, '_elementor_edit_mode', 'builder'),
(746, 76, '_elementor_template_type', 'wp-page'),
(738, 75, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d5b5085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(838, 83, '_elementor_page_settings', 'a:0:{}'),
(840, 84, '_elementor_edit_mode', 'builder'),
(841, 84, '_elementor_template_type', 'wp-page'),
(842, 84, '_elementor_version', '4.1.4'),
(843, 84, '_elementor_pro_version', '4.0.2'),
(844, 84, '_elementor_global_class_usage_indexed', '1'),
(845, 84, '_elementor_global_class_usage_indexed_preview', '1'),
(846, 84, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(847, 84, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(852, 86, '_wp_attached_file', '2026/07/banner-29.png'),
(853, 86, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:971;s:6:\"height\";i:1619;s:4:\"file\";s:21:\"2026/07/banner-29.png\";s:8:\"filesize\";i:510341;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-29-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43823;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-29-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:361668;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20293;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"banner-29-768x1281.png\";s:5:\"width\";i:768;s:6:\"height\";i:1281;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:538203;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-29-921x1536.png\";s:5:\"width\";i:921;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:746200;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1153, 111, '_elementor_version', '4.1.4'),
(1154, 111, '_elementor_pro_version', '4.0.2'),
(1155, 111, '_elementor_global_class_usage_indexed', '1'),
(1156, 111, '_elementor_global_class_usage_indexed_preview', '1'),
(1157, 111, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1158, 111, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(887, 90, '_wp_page_template', 'elementor_header_footer'),
(888, 90, '_elementor_edit_mode', 'builder'),
(889, 90, '_elementor_template_type', 'wp-page'),
(890, 90, '_elementor_version', '4.1.4'),
(891, 90, '_elementor_pro_version', '4.0.2'),
(892, 90, '_elementor_global_class_usage_indexed', '1'),
(893, 90, '_elementor_global_class_usage_indexed_preview', '1'),
(894, 90, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(895, 90, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(865, 88, '_wp_page_template', 'elementor_header_footer'),
(866, 88, '_elementor_edit_mode', 'builder'),
(867, 88, '_elementor_template_type', 'wp-page'),
(868, 88, '_elementor_version', '4.1.4'),
(869, 88, '_elementor_pro_version', '4.0.2'),
(870, 88, '_elementor_global_class_usage_indexed', '1'),
(871, 88, '_elementor_global_class_usage_indexed_preview', '1'),
(872, 88, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(873, 88, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(875, 88, '_elementor_page_settings', 'a:0:{}'),
(876, 89, '_wp_page_template', 'elementor_header_footer'),
(877, 89, '_elementor_edit_mode', 'builder'),
(878, 89, '_elementor_template_type', 'wp-page'),
(879, 89, '_elementor_version', '4.1.4'),
(880, 89, '_elementor_pro_version', '4.0.2'),
(881, 89, '_elementor_global_class_usage_indexed', '1'),
(882, 89, '_elementor_global_class_usage_indexed_preview', '1'),
(883, 89, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(884, 89, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"74f58cf8\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1367, 130, '_elementor_page_settings', 'a:0:{}'),
(1410, 135, '_wp_page_template', 'elementor_header_footer'),
(886, 89, '_elementor_page_settings', 'a:0:{}'),
(926, 93, '_wp_page_template', 'elementor_header_footer'),
(981, 97, '_elementor_edit_mode', 'builder'),
(982, 97, '_elementor_template_type', 'wp-page'),
(983, 97, '_elementor_version', '4.1.4'),
(967, 96, '_wp_page_template', 'elementor_header_footer'),
(984, 97, '_elementor_pro_version', '4.0.2'),
(985, 97, '_elementor_global_class_usage_indexed', '1'),
(986, 97, '_elementor_global_class_usage_indexed_preview', '1'),
(987, 97, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(988, 97, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(900, 91, '_wp_page_template', 'elementor_header_footer'),
(901, 91, '_elementor_edit_mode', 'builder'),
(902, 91, '_elementor_template_type', 'wp-page'),
(903, 91, '_elementor_version', '4.1.4'),
(904, 91, '_elementor_pro_version', '4.0.2'),
(905, 91, '_elementor_global_class_usage_indexed', '1'),
(906, 91, '_elementor_global_class_usage_indexed_preview', '1'),
(907, 91, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(908, 91, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(910, 91, '_elementor_page_settings', 'a:0:{}'),
(1616, 152, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1622, 153, '_elementor_edit_mode', 'builder'),
(1623, 153, '_elementor_template_type', 'header'),
(1624, 153, '_elementor_version', '4.1.4'),
(1625, 153, '_elementor_pro_version', '4.0.2'),
(1626, 153, '_elementor_global_class_usage_indexed', '1'),
(1627, 153, '_elementor_global_class_usage_indexed_preview', '1'),
(1628, 153, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1629, 153, '_wp_page_template', 'default'),
(1630, 153, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(913, 92, '_wp_page_template', 'elementor_header_footer'),
(914, 92, '_elementor_edit_mode', 'builder'),
(915, 92, '_elementor_template_type', 'wp-page'),
(916, 92, '_elementor_version', '4.1.4'),
(917, 92, '_elementor_pro_version', '4.0.2'),
(918, 92, '_elementor_global_class_usage_indexed', '1'),
(919, 92, '_elementor_global_class_usage_indexed_preview', '1'),
(920, 92, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(921, 92, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(923, 92, '_elementor_page_settings', 'a:0:{}'),
(1926, 176, '_elementor_pro_version', '4.0.2'),
(2787, 240, '_elementor_pro_version', '4.0.2'),
(2788, 240, '_elementor_global_class_usage_indexed', '1'),
(2789, 240, '_elementor_global_class_usage_indexed_preview', '1'),
(2790, 240, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2791, 240, '_wp_page_template', 'default'),
(2792, 240, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1607, 152, '_elementor_template_type', 'header'),
(1608, 152, '_elementor_version', '4.1.4'),
(1609, 152, '_elementor_pro_version', '4.0.2'),
(1610, 152, '_elementor_global_class_usage_indexed', '1'),
(1611, 152, '_elementor_global_class_usage_indexed_preview', '1'),
(1612, 152, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1613, 152, '_wp_page_template', 'default'),
(1614, 152, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(927, 93, '_elementor_edit_mode', 'builder'),
(928, 93, '_elementor_template_type', 'wp-page'),
(929, 93, '_elementor_version', '4.1.4'),
(930, 93, '_elementor_pro_version', '4.0.2'),
(931, 93, '_elementor_global_class_usage_indexed', '1'),
(932, 93, '_elementor_global_class_usage_indexed_preview', '1'),
(933, 93, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(934, 93, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1606, 152, '_elementor_edit_mode', 'builder'),
(2794, 240, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1587, 16, '_elementor_global_class_usage_indexed', '1'),
(1589, 14, '_elementor_global_class_usage_indexed', '1'),
(1600, 151, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3416, 289, '_elementor_edit_mode', 'builder'),
(1002, 99, '_wp_page_template', 'elementor_header_footer'),
(980, 97, '_wp_page_template', 'elementor_header_footer'),
(941, 94, '_wp_page_template', 'elementor_header_footer'),
(942, 94, '_elementor_edit_mode', 'builder'),
(943, 94, '_elementor_template_type', 'wp-page'),
(944, 94, '_elementor_version', '4.1.4'),
(945, 94, '_elementor_pro_version', '4.0.2'),
(946, 94, '_elementor_global_class_usage_indexed', '1'),
(947, 94, '_elementor_global_class_usage_indexed_preview', '1'),
(948, 94, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(949, 94, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(951, 94, '_elementor_page_settings', 'a:0:{}'),
(1564, 148, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3417, 289, '_elementor_template_type', 'wp-page'),
(3418, 289, '_elementor_version', '4.1.4'),
(3419, 289, '_elementor_pro_version', '4.0.2'),
(3420, 289, '_elementor_global_class_usage_indexed', '1'),
(3421, 289, '_elementor_global_class_usage_indexed_preview', '1'),
(3422, 289, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3423, 289, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1580, 150, '_wp_attached_file', '2026/07/logo-35.png'),
(1581, 150, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:595;s:6:\"height\";i:325;s:4:\"file\";s:19:\"2026/07/logo-35.png\";s:8:\"filesize\";i:20723;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"logo-35-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21617;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"logo-35-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14276;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1583, 12, '_elementor_global_class_usage_indexed', '1'),
(954, 95, '_wp_page_template', 'elementor_header_footer'),
(955, 95, '_elementor_edit_mode', 'builder'),
(956, 95, '_elementor_template_type', 'wp-page'),
(957, 95, '_elementor_version', '4.1.4'),
(958, 95, '_elementor_pro_version', '4.0.2'),
(959, 95, '_elementor_global_class_usage_indexed', '1'),
(960, 95, '_elementor_global_class_usage_indexed_preview', '1'),
(961, 95, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(962, 95, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(964, 95, '_elementor_page_settings', 'a:0:{}'),
(1721, 160, '_wp_page_template', 'elementor_header_footer'),
(2890, 248, '_wp_page_template', 'elementor_header_footer'),
(2891, 248, '_elementor_edit_mode', 'builder'),
(2892, 248, '_elementor_template_type', 'wp-page'),
(2893, 248, '_elementor_version', '4.1.4'),
(2894, 248, '_elementor_pro_version', '4.0.2'),
(2895, 248, '_elementor_global_class_usage_indexed', '1'),
(2896, 248, '_elementor_global_class_usage_indexed_preview', '1'),
(2897, 248, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2898, 248, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(1554, 148, '_elementor_edit_mode', 'builder'),
(1555, 148, '_elementor_template_type', 'header'),
(1556, 148, '_elementor_version', '4.1.4'),
(1557, 148, '_elementor_pro_version', '4.0.2'),
(1558, 148, '_elementor_global_class_usage_indexed', '1'),
(1559, 148, '_elementor_global_class_usage_indexed_preview', '1'),
(1560, 148, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1561, 148, '_wp_page_template', 'default'),
(1562, 148, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(968, 96, '_elementor_edit_mode', 'builder'),
(969, 96, '_elementor_template_type', 'wp-page'),
(970, 96, '_elementor_version', '4.1.4'),
(971, 96, '_elementor_pro_version', '4.0.2'),
(972, 96, '_elementor_global_class_usage_indexed', '1'),
(973, 96, '_elementor_global_class_usage_indexed_preview', '1'),
(974, 96, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(975, 96, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1548, 147, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2213, 198, '_wp_page_template', 'elementor_header_footer'),
(1980, 180, '_wp_attached_file', '2026/07/bg-1.png'),
(1590, 151, '_elementor_edit_mode', 'builder'),
(1591, 151, '_elementor_template_type', 'header'),
(1592, 151, '_elementor_version', '4.1.4'),
(1593, 151, '_elementor_pro_version', '4.0.2'),
(1594, 151, '_elementor_global_class_usage_indexed', '1'),
(1595, 151, '_elementor_global_class_usage_indexed_preview', '1'),
(1596, 151, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1597, 151, '_wp_page_template', 'default'),
(1598, 151, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(990, 97, '_elementor_page_settings', 'a:0:{}'),
(991, 98, '_wp_page_template', 'elementor_header_footer'),
(992, 98, '_elementor_edit_mode', 'builder'),
(993, 98, '_elementor_template_type', 'wp-page'),
(994, 98, '_elementor_version', '4.1.4'),
(995, 98, '_elementor_pro_version', '4.0.2'),
(996, 98, '_elementor_global_class_usage_indexed', '1'),
(997, 98, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(998, 98, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(999, 98, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1001, 98, '_elementor_page_settings', 'a:0:{}'),
(1003, 99, '_elementor_edit_mode', 'builder'),
(1004, 99, '_elementor_template_type', 'wp-page'),
(1005, 99, '_elementor_version', '4.1.4'),
(1006, 99, '_elementor_pro_version', '4.0.2'),
(1007, 99, '_elementor_global_class_usage_indexed', '1'),
(1008, 99, '_elementor_global_class_usage_indexed_preview', '1'),
(1009, 99, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1010, 99, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1041, 102, '_wp_page_template', 'elementor_header_footer'),
(1076, 105, '_wp_page_template', 'elementor_header_footer'),
(1054, 103, '_wp_page_template', 'elementor_header_footer'),
(1055, 103, '_elementor_edit_mode', 'builder'),
(1056, 103, '_elementor_template_type', 'wp-page'),
(1057, 103, '_elementor_version', '4.1.4'),
(1058, 103, '_elementor_pro_version', '4.0.2'),
(1059, 103, '_elementor_global_class_usage_indexed', '1'),
(1060, 103, '_elementor_global_class_usage_indexed_preview', '1'),
(1061, 103, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1062, 103, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1015, 100, '_wp_page_template', 'elementor_header_footer'),
(1016, 100, '_elementor_edit_mode', 'builder'),
(1017, 100, '_elementor_template_type', 'wp-page'),
(1018, 100, '_elementor_version', '4.1.4'),
(1019, 100, '_elementor_pro_version', '4.0.2'),
(1020, 100, '_elementor_global_class_usage_indexed', '1'),
(1021, 100, '_elementor_global_class_usage_indexed_preview', '1'),
(1022, 100, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1023, 100, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1025, 100, '_elementor_page_settings', 'a:0:{}'),
(1521, 144, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1526, 146, '_elementor_edit_mode', 'builder'),
(1523, 145, '_wp_attached_file', '2026/07/email_3894024.svg'),
(1524, 145, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:941;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1527, 146, '_elementor_template_type', 'header'),
(1528, 146, '_elementor_version', '4.1.4'),
(1529, 146, '_elementor_pro_version', '4.0.2'),
(1530, 146, '_elementor_global_class_usage_indexed', '1'),
(1531, 146, '_elementor_global_class_usage_indexed_preview', '1'),
(1532, 146, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1533, 146, '_wp_page_template', 'default'),
(1534, 146, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1536, 146, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1539, 147, '_elementor_template_type', 'header'),
(1540, 147, '_elementor_version', '4.1.4'),
(1541, 147, '_elementor_pro_version', '4.0.2'),
(1542, 147, '_elementor_global_class_usage_indexed', '1'),
(1543, 147, '_elementor_global_class_usage_indexed_preview', '1'),
(1544, 147, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1545, 147, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1546, 147, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1028, 101, '_wp_page_template', 'elementor_header_footer'),
(1029, 101, '_elementor_edit_mode', 'builder'),
(1030, 101, '_elementor_template_type', 'wp-page'),
(1031, 101, '_elementor_version', '4.1.4'),
(1032, 101, '_elementor_pro_version', '4.0.2'),
(1033, 101, '_elementor_global_class_usage_indexed', '1'),
(1034, 101, '_elementor_global_class_usage_indexed_preview', '1'),
(1035, 101, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1036, 101, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":315,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1038, 101, '_elementor_page_settings', 'a:0:{}'),
(1042, 102, '_elementor_edit_mode', 'builder'),
(1043, 102, '_elementor_template_type', 'wp-page'),
(1044, 102, '_elementor_version', '4.1.4'),
(1045, 102, '_elementor_pro_version', '4.0.2'),
(1046, 102, '_elementor_global_class_usage_indexed', '1'),
(1047, 102, '_elementor_global_class_usage_indexed_preview', '1'),
(1048, 102, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1049, 102, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1357, 129, '_elementor_page_settings', 'a:0:{}'),
(1358, 130, '_wp_page_template', 'elementor_header_footer'),
(1359, 130, '_elementor_edit_mode', 'builder'),
(1360, 130, '_elementor_template_type', 'wp-page'),
(1361, 130, '_elementor_version', '4.1.4'),
(1362, 130, '_elementor_pro_version', '4.0.2'),
(1363, 130, '_elementor_global_class_usage_indexed', '1'),
(1364, 130, '_elementor_global_class_usage_indexed_preview', '1'),
(1365, 130, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1366, 130, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1064, 103, '_elementor_page_settings', 'a:0:{}'),
(1065, 104, '_wp_page_template', 'elementor_header_footer'),
(1066, 104, '_elementor_edit_mode', 'builder'),
(1067, 104, '_elementor_template_type', 'wp-page'),
(1068, 104, '_elementor_version', '4.1.4'),
(1069, 104, '_elementor_pro_version', '4.0.2'),
(1070, 104, '_elementor_global_class_usage_indexed', '1'),
(1071, 104, '_elementor_global_class_usage_indexed_preview', '1'),
(1072, 104, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1073, 104, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1075, 104, '_elementor_page_settings', 'a:0:{}'),
(1077, 105, '_elementor_edit_mode', 'builder'),
(1078, 105, '_elementor_template_type', 'wp-page'),
(1079, 105, '_elementor_version', '4.1.4'),
(1080, 105, '_elementor_pro_version', '4.0.2'),
(1081, 105, '_elementor_global_class_usage_indexed', '1'),
(1082, 105, '_elementor_global_class_usage_indexed_preview', '1'),
(1083, 105, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1084, 105, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1128, 109, '_wp_page_template', 'elementor_header_footer'),
(1129, 109, '_elementor_edit_mode', 'builder'),
(1130, 109, '_elementor_template_type', 'wp-page'),
(1131, 109, '_elementor_version', '4.1.4'),
(1132, 109, '_elementor_pro_version', '4.0.2'),
(1133, 109, '_elementor_global_class_usage_indexed', '1'),
(1134, 109, '_elementor_global_class_usage_indexed_preview', '1'),
(1135, 109, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1136, 109, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1089, 106, '_wp_page_template', 'elementor_header_footer'),
(1090, 106, '_elementor_edit_mode', 'builder'),
(1091, 106, '_elementor_template_type', 'wp-page'),
(1092, 106, '_elementor_version', '4.1.4'),
(1093, 106, '_elementor_pro_version', '4.0.2'),
(1094, 106, '_elementor_global_class_usage_indexed', '1'),
(1095, 106, '_elementor_global_class_usage_indexed_preview', '1'),
(1096, 106, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1097, 106, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1099, 106, '_elementor_page_settings', 'a:0:{}'),
(1480, 140, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1102, 107, '_wp_page_template', 'elementor_header_footer'),
(1103, 107, '_elementor_edit_mode', 'builder'),
(1104, 107, '_elementor_template_type', 'wp-page'),
(1105, 107, '_elementor_version', '4.1.4'),
(1106, 107, '_elementor_pro_version', '4.0.2'),
(1107, 107, '_elementor_global_class_usage_indexed', '1'),
(1108, 107, '_elementor_global_class_usage_indexed_preview', '1'),
(1109, 107, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1110, 107, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1112, 107, '_elementor_page_settings', 'a:0:{}'),
(1469, 139, '_elementor_page_settings', 'a:0:{}'),
(3425, 289, '_elementor_page_settings', 'a:0:{}'),
(1473, 140, '_elementor_edit_mode', 'builder'),
(1474, 140, '_elementor_template_type', 'wp-page'),
(1475, 140, '_elementor_version', '4.1.4'),
(1476, 140, '_elementor_pro_version', '4.0.2'),
(1477, 140, '_elementor_global_class_usage_indexed', '1'),
(1478, 140, '_elementor_global_class_usage_indexed_preview', '1'),
(1479, 140, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1150, 111, '_wp_page_template', 'elementor_header_footer'),
(1151, 111, '_elementor_edit_mode', 'builder'),
(1152, 111, '_elementor_template_type', 'wp-page'),
(1115, 108, '_wp_page_template', 'elementor_header_footer'),
(1116, 108, '_elementor_edit_mode', 'builder'),
(1117, 108, '_elementor_template_type', 'wp-page'),
(1118, 108, '_elementor_version', '4.1.4'),
(1119, 108, '_elementor_pro_version', '4.0.2'),
(1120, 108, '_elementor_global_class_usage_indexed', '1'),
(1121, 108, '_elementor_global_class_usage_indexed_preview', '1'),
(1122, 108, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1123, 108, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1138, 109, '_elementor_page_settings', 'a:0:{}'),
(1139, 110, '_wp_page_template', 'elementor_header_footer'),
(1140, 110, '_elementor_edit_mode', 'builder'),
(1141, 110, '_elementor_template_type', 'wp-page'),
(1142, 110, '_elementor_version', '4.1.4'),
(1143, 110, '_elementor_pro_version', '4.0.2'),
(1144, 110, '_elementor_global_class_usage_indexed', '1'),
(1145, 110, '_elementor_global_class_usage_indexed_preview', '1'),
(1146, 110, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1147, 110, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"855abb7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"bbe5a84\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"49bc27a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Essie\'s <br>Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d085a27\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f2d0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f402f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"268e009\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4971afb\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1149, 110, '_elementor_page_settings', 'a:0:{}'),
(1234, 119, '_wp_page_template', 'elementor_header_footer'),
(1472, 140, '_wp_page_template', 'elementor_header_footer'),
(1517, 144, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1518, 144, '_wp_page_template', 'default'),
(1519, 144, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1488, 142, '_elementor_edit_mode', 'builder'),
(1489, 142, '_elementor_template_type', 'header'),
(1490, 142, '_elementor_version', '4.1.4'),
(1491, 142, '_elementor_pro_version', '4.0.2'),
(1492, 142, '_elementor_global_class_usage_indexed', '1'),
(1493, 142, '_elementor_global_class_usage_indexed_preview', '1'),
(1494, 142, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1495, 142, '_wp_page_template', 'default'),
(1496, 142, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bd10abf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"List Item #1\",\"_id\":\"f4a5299\"}],\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1498, 142, '_elementor_page_settings', 'a:0:{}'),
(1499, 143, '_elementor_edit_mode', 'builder'),
(1500, 143, '_elementor_template_type', 'header'),
(1501, 143, '_elementor_version', '4.1.4'),
(1502, 143, '_elementor_pro_version', '4.0.2'),
(1503, 143, '_elementor_global_class_usage_indexed', '1'),
(1504, 143, '_elementor_global_class_usage_indexed_preview', '1'),
(1505, 143, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1506, 143, '_wp_page_template', 'default'),
(1507, 143, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bd10abf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"List Item #1\",\"_id\":\"f4a5299\"}],\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1510, 136, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1538, 147, '_elementor_edit_mode', 'builder'),
(1511, 144, '_elementor_edit_mode', 'builder'),
(1512, 144, '_elementor_template_type', 'header'),
(1513, 144, '_elementor_version', '4.1.4'),
(1514, 144, '_elementor_pro_version', '4.0.2'),
(1515, 144, '_elementor_global_class_usage_indexed', '1'),
(1516, 144, '_elementor_global_class_usage_indexed_preview', '1'),
(1382, 132, '_wp_attached_file', '2026/07/banner-83-1.jpg'),
(1383, 132, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:991;s:6:\"height\";i:1619;s:4:\"file\";s:23:\"2026/07/banner-83-1.jpg\";s:8:\"filesize\";i:149886;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-83-1-184x300.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16084;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-83-1-627x1024.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105143;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-83-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:7434;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"banner-83-1-768x1255.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141493;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-83-1-940x1536.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191331;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1163, 112, '_wp_trash_meta_status', 'publish'),
(1164, 112, '_wp_trash_meta_time', '1783753002'),
(1165, 113, '_wp_trash_meta_status', 'publish'),
(1166, 113, '_wp_trash_meta_time', '1783753031'),
(1167, 114, '_wp_page_template', 'elementor_header_footer'),
(1168, 114, '_elementor_edit_mode', 'builder'),
(1169, 114, '_elementor_template_type', 'wp-page'),
(1170, 114, '_elementor_version', '4.1.4'),
(1171, 114, '_elementor_pro_version', '4.0.2'),
(1172, 114, '_elementor_global_class_usage_indexed', '1'),
(1173, 114, '_elementor_global_class_usage_indexed_preview', '1'),
(1174, 114, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1175, 114, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1177, 114, '_elementor_page_settings', 'a:0:{}'),
(3428, 290, '_wp_page_template', 'elementor_header_footer'),
(3429, 290, '_elementor_edit_mode', 'builder'),
(3430, 290, '_elementor_template_type', 'wp-page'),
(3431, 290, '_elementor_version', '4.1.4'),
(3432, 290, '_elementor_pro_version', '4.0.2'),
(3433, 290, '_elementor_global_class_usage_indexed', '1'),
(3434, 290, '_elementor_global_class_usage_indexed_preview', '1'),
(3435, 290, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3436, 290, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1459, 139, '_wp_page_template', 'elementor_header_footer'),
(1460, 139, '_elementor_edit_mode', 'builder'),
(1461, 139, '_elementor_template_type', 'wp-page'),
(1462, 139, '_elementor_version', '4.1.4'),
(1463, 139, '_elementor_pro_version', '4.0.2'),
(1464, 139, '_elementor_global_class_usage_indexed', '1'),
(1465, 139, '_elementor_global_class_usage_indexed_preview', '1'),
(1466, 139, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1467, 139, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1180, 115, '_wp_page_template', 'elementor_header_footer'),
(1181, 115, '_elementor_edit_mode', 'builder'),
(1182, 115, '_elementor_template_type', 'wp-page'),
(1183, 115, '_elementor_version', '4.1.4'),
(1184, 115, '_elementor_pro_version', '4.0.2'),
(1185, 115, '_elementor_global_class_usage_indexed', '1'),
(1186, 115, '_elementor_global_class_usage_indexed_preview', '1'),
(1187, 115, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1188, 115, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to  Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1190, 115, '_elementor_page_settings', 'a:0:{}'),
(1456, 138, '_elementor_page_settings', 'a:0:{}'),
(1193, 116, '_wp_page_template', 'elementor_header_footer'),
(1194, 116, '_elementor_edit_mode', 'builder'),
(1195, 116, '_elementor_template_type', 'wp-page'),
(1196, 116, '_elementor_version', '4.1.4'),
(1197, 116, '_elementor_pro_version', '4.0.2'),
(1198, 116, '_elementor_global_class_usage_indexed', '1'),
(1199, 116, '_elementor_global_class_usage_indexed_preview', '1'),
(1200, 116, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1201, 116, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1965, 179, '_wp_page_template', 'elementor_header_footer'),
(1208, 117, '_wp_page_template', 'elementor_header_footer'),
(1209, 117, '_elementor_edit_mode', 'builder'),
(1210, 117, '_elementor_template_type', 'wp-page'),
(1211, 117, '_elementor_version', '4.1.4'),
(1212, 117, '_elementor_pro_version', '4.0.2'),
(1213, 117, '_elementor_global_class_usage_indexed', '1'),
(1214, 117, '_elementor_global_class_usage_indexed_preview', '1'),
(1215, 117, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1216, 117, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1218, 117, '_elementor_page_settings', 'a:0:{}'),
(1446, 138, '_wp_page_template', 'elementor_header_footer'),
(1447, 138, '_elementor_edit_mode', 'builder'),
(1448, 138, '_elementor_template_type', 'wp-page'),
(1449, 138, '_elementor_version', '4.1.4'),
(1450, 138, '_elementor_pro_version', '4.0.2'),
(1451, 138, '_elementor_global_class_usage_indexed', '1'),
(1452, 138, '_elementor_global_class_usage_indexed_preview', '1'),
(1453, 138, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1454, 138, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1221, 118, '_wp_page_template', 'elementor_header_footer'),
(1222, 118, '_elementor_edit_mode', 'builder'),
(1223, 118, '_elementor_template_type', 'wp-page'),
(1224, 118, '_elementor_version', '4.1.4'),
(1225, 118, '_elementor_pro_version', '4.0.2'),
(1226, 118, '_elementor_global_class_usage_indexed', '1'),
(1227, 118, '_elementor_global_class_usage_indexed_preview', '1'),
(1228, 118, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1229, 118, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1231, 118, '_elementor_page_settings', 'a:0:{}'),
(1235, 119, '_elementor_edit_mode', 'builder'),
(1236, 119, '_elementor_template_type', 'wp-page'),
(1237, 119, '_elementor_version', '4.1.4'),
(1238, 119, '_elementor_pro_version', '4.0.2'),
(1239, 119, '_elementor_global_class_usage_indexed', '1'),
(1240, 119, '_elementor_global_class_usage_indexed_preview', '1'),
(1241, 119, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1242, 119, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1372, 131, '_elementor_pro_version', '4.0.2'),
(1249, 120, '_wp_page_template', 'elementor_header_footer'),
(1250, 120, '_elementor_edit_mode', 'builder'),
(1251, 120, '_elementor_template_type', 'wp-page'),
(1252, 120, '_elementor_version', '4.1.4'),
(1253, 120, '_elementor_pro_version', '4.0.2'),
(1254, 120, '_elementor_global_class_usage_indexed', '1'),
(1255, 120, '_elementor_global_class_usage_indexed_preview', '1'),
(1256, 120, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1257, 120, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1259, 120, '_elementor_page_settings', 'a:0:{}'),
(3438, 290, '_elementor_page_settings', 'a:0:{}'),
(1411, 135, '_elementor_edit_mode', 'builder'),
(1412, 135, '_elementor_template_type', 'wp-page'),
(1413, 135, '_elementor_version', '4.1.4'),
(1414, 135, '_elementor_pro_version', '4.0.2'),
(1415, 135, '_elementor_global_class_usage_indexed', '1'),
(1416, 135, '_elementor_global_class_usage_indexed_preview', '1'),
(1417, 135, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1418, 135, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1262, 121, '_wp_page_template', 'elementor_header_footer'),
(1263, 121, '_elementor_edit_mode', 'builder'),
(1264, 121, '_elementor_template_type', 'wp-page'),
(1265, 121, '_elementor_version', '4.1.4'),
(1266, 121, '_elementor_pro_version', '4.0.2'),
(1267, 121, '_elementor_global_class_usage_indexed', '1'),
(1268, 121, '_elementor_global_class_usage_indexed_preview', '1'),
(1269, 121, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1270, 121, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1272, 121, '_elementor_page_settings', 'a:0:{}'),
(1407, 134, '_elementor_page_settings', 'a:0:{}'),
(1275, 122, '_wp_page_template', 'elementor_header_footer'),
(1276, 122, '_elementor_edit_mode', 'builder'),
(1277, 122, '_elementor_template_type', 'wp-page'),
(1278, 122, '_elementor_version', '4.1.4'),
(1279, 122, '_elementor_pro_version', '4.0.2'),
(1280, 122, '_elementor_global_class_usage_indexed', '1'),
(1281, 122, '_elementor_global_class_usage_indexed_preview', '1'),
(1282, 122, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1283, 122, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1373, 131, '_elementor_global_class_usage_indexed', '1'),
(1290, 123, '_wp_page_template', 'elementor_header_footer'),
(1291, 123, '_elementor_edit_mode', 'builder'),
(1292, 123, '_elementor_template_type', 'wp-page'),
(1293, 123, '_elementor_version', '4.1.4'),
(1294, 123, '_elementor_pro_version', '4.0.2'),
(1295, 123, '_elementor_global_class_usage_indexed', '1'),
(1296, 123, '_elementor_global_class_usage_indexed_preview', '1'),
(1297, 123, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1298, 123, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1300, 123, '_elementor_page_settings', 'a:0:{}'),
(1397, 134, '_wp_page_template', 'elementor_header_footer'),
(1398, 134, '_elementor_edit_mode', 'builder'),
(1399, 134, '_elementor_template_type', 'wp-page'),
(1400, 134, '_elementor_version', '4.1.4'),
(1401, 134, '_elementor_pro_version', '4.0.2'),
(1402, 134, '_elementor_global_class_usage_indexed', '1'),
(1403, 134, '_elementor_global_class_usage_indexed_preview', '1'),
(1404, 134, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1405, 134, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-82.jpg\",\"id\":128,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1303, 124, '_wp_page_template', 'elementor_header_footer'),
(1304, 124, '_elementor_edit_mode', 'builder'),
(1305, 124, '_elementor_template_type', 'wp-page'),
(1306, 124, '_elementor_version', '4.1.4'),
(1307, 124, '_elementor_pro_version', '4.0.2'),
(1308, 124, '_elementor_global_class_usage_indexed', '1'),
(1309, 124, '_elementor_global_class_usage_indexed_preview', '1'),
(1310, 124, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1311, 124, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a41b2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"aaad553\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1313, 124, '_elementor_page_settings', 'a:0:{}'),
(1394, 133, '_elementor_page_settings', 'a:0:{}'),
(1368, 131, '_wp_page_template', 'elementor_header_footer'),
(1369, 131, '_elementor_edit_mode', 'builder'),
(1370, 131, '_elementor_template_type', 'wp-page'),
(1371, 131, '_elementor_version', '4.1.4'),
(1316, 125, '_wp_page_template', 'elementor_header_footer'),
(1317, 125, '_elementor_edit_mode', 'builder'),
(1318, 125, '_elementor_template_type', 'wp-page'),
(1319, 125, '_elementor_version', '4.1.4'),
(1320, 125, '_elementor_pro_version', '4.0.2'),
(1321, 125, '_elementor_global_class_usage_indexed', '1'),
(1322, 125, '_elementor_global_class_usage_indexed_preview', '1'),
(1323, 125, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1324, 125, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1331, 126, '_wp_attached_file', '2026/07/banner-78.jpg'),
(1332, 126, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:300;s:6:\"height\";i:429;s:4:\"file\";s:21:\"2026/07/banner-78.jpg\";s:8:\"filesize\";i:152820;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-78-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-78-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7657;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1375, 131, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1376, 131, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-82.jpg\",\"id\":128,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1384, 133, '_wp_page_template', 'elementor_header_footer'),
(1385, 133, '_elementor_edit_mode', 'builder'),
(1386, 133, '_elementor_template_type', 'wp-page'),
(1387, 133, '_elementor_version', '4.1.4'),
(1388, 133, '_elementor_pro_version', '4.0.2'),
(1389, 133, '_elementor_global_class_usage_indexed', '1'),
(1390, 133, '_elementor_global_class_usage_indexed_preview', '1'),
(1391, 133, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1392, 133, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-82.jpg\",\"id\":128,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1348, 129, '_wp_page_template', 'elementor_header_footer'),
(1349, 129, '_elementor_edit_mode', 'builder'),
(1350, 129, '_elementor_template_type', 'wp-page'),
(1351, 129, '_elementor_version', '4.1.4'),
(1352, 129, '_elementor_pro_version', '4.0.2'),
(1353, 129, '_elementor_global_class_usage_indexed', '1'),
(1354, 129, '_elementor_global_class_usage_indexed_preview', '1'),
(1355, 129, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1356, 129, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1664, 155, '_elementor_page_settings', 'a:0:{}'),
(1667, 156, '_wp_page_template', 'elementor_header_footer'),
(1668, 156, '_elementor_edit_mode', 'builder'),
(1669, 156, '_elementor_template_type', 'wp-page'),
(1670, 156, '_elementor_version', '4.1.4'),
(1671, 156, '_elementor_pro_version', '4.0.2'),
(1672, 156, '_elementor_global_class_usage_indexed', '1'),
(1673, 156, '_elementor_global_class_usage_indexed_preview', '1'),
(1674, 156, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1675, 156, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1677, 156, '_elementor_page_settings', 'a:0:{}'),
(3397, 287, '_elementor_page_settings', 'a:0:{}'),
(1681, 157, '_elementor_edit_mode', 'builder'),
(1682, 157, '_elementor_template_type', 'wp-page'),
(1683, 157, '_elementor_version', '4.1.4'),
(1684, 157, '_elementor_pro_version', '4.0.2'),
(1685, 157, '_elementor_global_class_usage_indexed', '1'),
(1686, 157, '_elementor_global_class_usage_indexed_preview', '1'),
(1687, 157, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1688, 157, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3393, 287, '_elementor_global_class_usage_indexed_preview', '1'),
(3394, 287, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3395, 287, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1966, 179, '_elementor_edit_mode', 'builder'),
(1695, 158, '_wp_page_template', 'elementor_header_footer'),
(1696, 158, '_elementor_edit_mode', 'builder'),
(1697, 158, '_elementor_template_type', 'wp-page'),
(1698, 158, '_elementor_version', '4.1.4'),
(1699, 158, '_elementor_pro_version', '4.0.2'),
(1700, 158, '_elementor_global_class_usage_indexed', '1'),
(1701, 158, '_elementor_global_class_usage_indexed_preview', '1'),
(1702, 158, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1703, 158, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1705, 158, '_elementor_page_settings', 'a:0:{}'),
(3387, 287, '_wp_page_template', 'elementor_header_footer'),
(3388, 287, '_elementor_edit_mode', 'builder'),
(3389, 287, '_elementor_template_type', 'wp-page'),
(3390, 287, '_elementor_version', '4.1.4'),
(3391, 287, '_elementor_pro_version', '4.0.2'),
(3392, 287, '_elementor_global_class_usage_indexed', '1'),
(1708, 159, '_wp_page_template', 'elementor_header_footer'),
(1709, 159, '_elementor_edit_mode', 'builder'),
(1710, 159, '_elementor_template_type', 'wp-page'),
(1711, 159, '_elementor_version', '4.1.4'),
(1712, 159, '_elementor_pro_version', '4.0.2'),
(1713, 159, '_elementor_global_class_usage_indexed', '1'),
(1714, 159, '_elementor_global_class_usage_indexed_preview', '1'),
(1715, 159, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1716, 159, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1718, 159, '_elementor_page_settings', 'a:0:{}'),
(3384, 286, '_elementor_page_settings', 'a:0:{}'),
(1722, 160, '_elementor_edit_mode', 'builder'),
(1723, 160, '_elementor_template_type', 'wp-page'),
(1724, 160, '_elementor_version', '4.1.4'),
(1725, 160, '_elementor_pro_version', '4.0.2'),
(1726, 160, '_elementor_global_class_usage_indexed', '1'),
(1727, 160, '_elementor_global_class_usage_indexed_preview', '1'),
(1728, 160, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1729, 160, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1736, 161, '_elementor_edit_mode', 'builder'),
(1737, 161, '_elementor_template_type', 'header'),
(1738, 161, '_elementor_version', '4.1.4'),
(1739, 161, '_elementor_pro_version', '4.0.2'),
(1740, 161, '_elementor_global_class_usage_indexed', '1'),
(1741, 161, '_elementor_global_class_usage_indexed_preview', '1'),
(1742, 161, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1743, 161, '_wp_page_template', 'default'),
(1744, 161, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1746, 161, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3374, 286, '_wp_page_template', 'elementor_header_footer'),
(3375, 286, '_elementor_edit_mode', 'builder'),
(3376, 286, '_elementor_template_type', 'wp-page'),
(3377, 286, '_elementor_version', '4.1.4'),
(3378, 286, '_elementor_pro_version', '4.0.2'),
(3379, 286, '_elementor_global_class_usage_indexed', '1'),
(3380, 286, '_elementor_global_class_usage_indexed_preview', '1'),
(3381, 286, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3382, 286, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1768, 163, '_elementor_edit_mode', 'builder'),
(1753, 162, '_elementor_template_type', 'header'),
(1754, 162, '_elementor_version', '4.1.4'),
(1755, 162, '_elementor_pro_version', '4.0.2'),
(1756, 162, '_elementor_global_class_usage_indexed', '1'),
(1757, 162, '_elementor_global_class_usage_indexed_preview', '1'),
(1758, 162, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1759, 162, '_wp_page_template', 'default'),
(1760, 162, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":1,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1762, 162, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1784, 164, '_elementor_edit_mode', 'builder'),
(1769, 163, '_elementor_template_type', 'header'),
(1770, 163, '_elementor_version', '4.1.4'),
(1771, 163, '_elementor_pro_version', '4.0.2'),
(1772, 163, '_elementor_global_class_usage_indexed', '1'),
(1773, 163, '_elementor_global_class_usage_indexed_preview', '1'),
(1774, 163, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1775, 163, '_wp_page_template', 'default'),
(1776, 163, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1778, 163, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1785, 164, '_elementor_template_type', 'header'),
(1786, 164, '_elementor_version', '4.1.4'),
(1787, 164, '_elementor_pro_version', '4.0.2'),
(1788, 164, '_elementor_global_class_usage_indexed', '1'),
(1789, 164, '_elementor_global_class_usage_indexed_preview', '1'),
(1790, 164, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1791, 164, '_wp_page_template', 'default'),
(1792, 164, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1794, 164, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3400, 288, '_wp_page_template', 'elementor_header_footer'),
(3401, 288, '_elementor_edit_mode', 'builder'),
(3359, 285, '_wp_page_template', 'elementor_header_footer'),
(3360, 285, '_elementor_edit_mode', 'builder'),
(3361, 285, '_elementor_template_type', 'wp-page'),
(3362, 285, '_elementor_version', '4.1.4'),
(3363, 285, '_elementor_pro_version', '4.0.2'),
(3364, 285, '_elementor_global_class_usage_indexed', '1'),
(3365, 285, '_elementor_global_class_usage_indexed_preview', '1'),
(3366, 285, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3367, 285, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1817, 166, '_elementor_template_type', 'header'),
(1832, 167, '_elementor_edit_mode', 'builder'),
(1816, 166, '_elementor_edit_mode', 'builder'),
(1800, 165, '_elementor_edit_mode', 'builder'),
(1801, 165, '_elementor_template_type', 'header'),
(1802, 165, '_elementor_version', '4.1.4'),
(1803, 165, '_elementor_pro_version', '4.0.2'),
(1804, 165, '_elementor_global_class_usage_indexed', '1'),
(1805, 165, '_elementor_global_class_usage_indexed_preview', '1'),
(1806, 165, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1807, 165, '_wp_page_template', 'default'),
(1808, 165, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1810, 165, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1833, 167, '_elementor_template_type', 'header'),
(1818, 166, '_elementor_version', '4.1.4'),
(1819, 166, '_elementor_pro_version', '4.0.2'),
(1820, 166, '_elementor_global_class_usage_indexed', '1'),
(1821, 166, '_elementor_global_class_usage_indexed_preview', '1'),
(1822, 166, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1823, 166, '_wp_page_template', 'default'),
(1824, 166, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1826, 166, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3356, 284, '_elementor_page_settings', 'a:0:{}'),
(1853, 170, '_elementor_edit_mode', 'builder'),
(1834, 167, '_elementor_version', '4.1.4'),
(1835, 167, '_elementor_pro_version', '4.0.2'),
(1836, 167, '_elementor_global_class_usage_indexed', '1'),
(1837, 167, '_elementor_global_class_usage_indexed_preview', '1'),
(1838, 167, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1839, 167, '_wp_page_template', 'default'),
(1840, 167, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1842, 167, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1869, 171, '_elementor_edit_mode', 'builder'),
(1848, 168, '_wp_attached_file', '2026/07/fav-23.png'),
(1849, 168, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:18:\"2026/07/fav-23.png\";s:8:\"filesize\";i:47062;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"fav-23-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24638;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"fav-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11002;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1850, 169, '_wp_attached_file', '2026/07/cropped-fav-23.png'),
(1851, 169, '_wp_attachment_context', 'site-icon'),
(1852, 169, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2026/07/cropped-fav-23.png\";s:8:\"filesize\";i:46614;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-fav-23-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-fav-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11363;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:26:\"cropped-fav-23-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23060;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:26:\"cropped-fav-23-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15319;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:26:\"cropped-fav-23-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14156;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:24:\"cropped-fav-23-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1850;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1854, 170, '_elementor_template_type', 'header'),
(1855, 170, '_elementor_version', '4.1.4'),
(1856, 170, '_elementor_pro_version', '4.0.2'),
(1857, 170, '_elementor_global_class_usage_indexed', '1'),
(1858, 170, '_elementor_global_class_usage_indexed_preview', '1'),
(1859, 170, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1860, 170, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1861, 170, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":155,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1863, 170, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3346, 284, '_wp_page_template', 'elementor_header_footer'),
(3347, 284, '_elementor_edit_mode', 'builder'),
(3348, 284, '_elementor_template_type', 'wp-page'),
(3349, 284, '_elementor_version', '4.1.4'),
(3350, 284, '_elementor_pro_version', '4.0.2'),
(3351, 284, '_elementor_global_class_usage_indexed', '1'),
(3352, 284, '_elementor_global_class_usage_indexed_preview', '1'),
(3353, 284, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3354, 284, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1870, 171, '_elementor_template_type', 'header'),
(1871, 171, '_elementor_version', '4.1.4'),
(1872, 171, '_elementor_pro_version', '4.0.2'),
(1873, 171, '_elementor_global_class_usage_indexed', '1'),
(1874, 171, '_elementor_global_class_usage_indexed_preview', '1'),
(1875, 171, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1876, 171, '_wp_page_template', 'default'),
(1877, 171, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1879, 171, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3343, 283, '_elementor_page_settings', 'a:0:{}'),
(1923, 176, '_elementor_edit_mode', 'builder'),
(1907, 175, '_elementor_edit_mode', 'builder'),
(1885, 172, '_wp_attached_file', '2026/07/right-arrow_10137012.svg'),
(1886, 172, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:352;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1888, 173, '_wp_attached_file', '2026/07/svgexport-15-59.svg'),
(1889, 173, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:501;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1924, 176, '_elementor_template_type', 'header'),
(1891, 174, '_elementor_edit_mode', 'builder'),
(1892, 174, '_elementor_template_type', 'header'),
(1893, 174, '_elementor_version', '4.1.4'),
(1894, 174, '_elementor_pro_version', '4.0.2'),
(1895, 174, '_elementor_global_class_usage_indexed', '1'),
(1896, 174, '_elementor_global_class_usage_indexed_preview', '1'),
(1897, 174, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1898, 174, '_wp_page_template', 'default'),
(1899, 174, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-59.svg\",\"id\":173},\"library\":\"svg\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1901, 174, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1925, 176, '_elementor_version', '4.1.4'),
(1941, 177, '_elementor_template_type', 'wp-page'),
(1942, 177, '_elementor_version', '4.1.4'),
(1943, 177, '_elementor_pro_version', '4.0.2'),
(2697, 234, '_elementor_edit_mode', 'builder'),
(1939, 177, '_wp_page_template', 'elementor_header_footer'),
(1940, 177, '_elementor_edit_mode', 'builder'),
(1908, 175, '_elementor_template_type', 'header'),
(1909, 175, '_elementor_version', '4.1.4'),
(1910, 175, '_elementor_pro_version', '4.0.2'),
(1911, 175, '_elementor_global_class_usage_indexed', '1'),
(1912, 175, '_elementor_global_class_usage_indexed_preview', '1'),
(1913, 175, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1914, 175, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1915, 175, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/right-arrow_10137012.svg\",\"id\":172},\"library\":\"svg\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1917, 175, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3402, 288, '_elementor_template_type', 'wp-page'),
(3333, 283, '_wp_page_template', 'elementor_header_footer'),
(3334, 283, '_elementor_edit_mode', 'builder'),
(3335, 283, '_elementor_template_type', 'wp-page'),
(3336, 283, '_elementor_version', '4.1.4'),
(3337, 283, '_elementor_pro_version', '4.0.2'),
(3338, 283, '_elementor_global_class_usage_indexed', '1'),
(3339, 283, '_elementor_global_class_usage_indexed_preview', '1'),
(3340, 283, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3341, 283, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1927, 176, '_elementor_global_class_usage_indexed', '1'),
(1928, 176, '_elementor_global_class_usage_indexed_preview', '1'),
(1929, 176, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1930, 176, '_wp_page_template', 'default'),
(1931, 176, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1933, 176, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1944, 177, '_elementor_global_class_usage_indexed', '1'),
(1945, 177, '_elementor_global_class_usage_indexed_preview', '1'),
(1946, 177, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1947, 177, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1949, 177, '_elementor_page_settings', 'a:0:{}'),
(1952, 178, '_wp_page_template', 'elementor_header_footer'),
(1953, 178, '_elementor_edit_mode', 'builder'),
(1954, 178, '_elementor_template_type', 'wp-page'),
(1955, 178, '_elementor_version', '4.1.4'),
(1956, 178, '_elementor_pro_version', '4.0.2'),
(1957, 178, '_elementor_global_class_usage_indexed', '1'),
(1958, 178, '_elementor_global_class_usage_indexed_preview', '1'),
(1959, 178, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1960, 178, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1962, 178, '_elementor_page_settings', 'a:0:{}'),
(1967, 179, '_elementor_template_type', 'wp-page'),
(1968, 179, '_elementor_version', '4.1.4'),
(1969, 179, '_elementor_pro_version', '4.0.2'),
(1970, 179, '_elementor_global_class_usage_indexed', '1'),
(1971, 179, '_elementor_global_class_usage_indexed_preview', '1'),
(1972, 179, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1973, 179, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1981, 180, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2026/07/bg-1.png\";s:8:\"filesize\";i:15238;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-1-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2232;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-1-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-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:228;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"bg-1-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7679;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"bg-1-1536x640.png\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19761;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(1982, 181, '_wp_page_template', 'elementor_header_footer'),
(1983, 181, '_elementor_edit_mode', 'builder'),
(1984, 181, '_elementor_template_type', 'wp-page'),
(1985, 181, '_elementor_version', '4.1.4'),
(1986, 181, '_elementor_pro_version', '4.0.2'),
(1987, 181, '_elementor_global_class_usage_indexed', '1'),
(1988, 181, '_elementor_global_class_usage_indexed_preview', '1'),
(1989, 181, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1990, 181, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(1992, 181, '_elementor_page_settings', 'a:0:{}'),
(3318, 282, '_wp_page_template', 'elementor_header_footer'),
(3319, 282, '_elementor_edit_mode', 'builder'),
(3320, 282, '_elementor_template_type', 'wp-page'),
(3321, 282, '_elementor_version', '4.1.4'),
(3322, 282, '_elementor_pro_version', '4.0.2'),
(3323, 282, '_elementor_global_class_usage_indexed', '1'),
(3324, 282, '_elementor_global_class_usage_indexed_preview', '1'),
(3325, 282, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3326, 282, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1995, 182, '_wp_page_template', 'elementor_header_footer'),
(1996, 182, '_elementor_edit_mode', 'builder'),
(1997, 182, '_elementor_template_type', 'wp-page'),
(1998, 182, '_elementor_version', '4.1.4'),
(1999, 182, '_elementor_pro_version', '4.0.2'),
(2000, 182, '_elementor_global_class_usage_indexed', '1'),
(2001, 182, '_elementor_global_class_usage_indexed_preview', '1'),
(2002, 182, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2003, 182, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2005, 182, '_elementor_page_settings', 'a:0:{}'),
(3315, 281, '_elementor_page_settings', 'a:0:{}'),
(2008, 183, '_wp_page_template', 'elementor_header_footer'),
(2009, 183, '_elementor_edit_mode', 'builder'),
(2010, 183, '_elementor_template_type', 'wp-page'),
(2011, 183, '_elementor_version', '4.1.4'),
(2012, 183, '_elementor_pro_version', '4.0.2'),
(2013, 183, '_elementor_global_class_usage_indexed', '1'),
(2014, 183, '_elementor_global_class_usage_indexed_preview', '1'),
(2015, 183, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2016, 183, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2023, 184, '_wp_page_template', 'elementor_header_footer'),
(2024, 184, '_elementor_edit_mode', 'builder'),
(2025, 184, '_elementor_template_type', 'wp-page'),
(2026, 184, '_elementor_version', '4.1.4'),
(2027, 184, '_elementor_pro_version', '4.0.2'),
(2028, 184, '_elementor_global_class_usage_indexed', '1'),
(2029, 184, '_elementor_global_class_usage_indexed_preview', '1'),
(2030, 184, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2031, 184, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2033, 184, '_elementor_page_settings', 'a:0:{}'),
(3305, 281, '_wp_page_template', 'elementor_header_footer'),
(3306, 281, '_elementor_edit_mode', 'builder'),
(3307, 281, '_elementor_template_type', 'wp-page'),
(3308, 281, '_elementor_version', '4.1.4'),
(3309, 281, '_elementor_pro_version', '4.0.2'),
(3310, 281, '_elementor_global_class_usage_indexed', '1'),
(3311, 281, '_elementor_global_class_usage_indexed_preview', '1'),
(3312, 281, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3313, 281, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2036, 185, '_wp_page_template', 'elementor_header_footer'),
(2037, 185, '_elementor_edit_mode', 'builder'),
(2038, 185, '_elementor_template_type', 'wp-page'),
(2039, 185, '_elementor_version', '4.1.4'),
(2040, 185, '_elementor_pro_version', '4.0.2'),
(2041, 185, '_elementor_global_class_usage_indexed', '1'),
(2042, 185, '_elementor_global_class_usage_indexed_preview', '1'),
(2043, 185, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2044, 185, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2046, 185, '_elementor_page_settings', 'a:0:{}'),
(3302, 280, '_elementor_page_settings', 'a:0:{}'),
(2049, 186, '_wp_page_template', 'elementor_header_footer'),
(2050, 186, '_elementor_edit_mode', 'builder'),
(2051, 186, '_elementor_template_type', 'wp-page'),
(2052, 186, '_elementor_version', '4.1.4'),
(2053, 186, '_elementor_pro_version', '4.0.2'),
(2054, 186, '_elementor_global_class_usage_indexed', '1'),
(2055, 186, '_elementor_global_class_usage_indexed_preview', '1'),
(2056, 186, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2057, 186, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section{\\n    \\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2172, 195, '_wp_page_template', 'elementor_header_footer'),
(2064, 187, '_wp_page_template', 'elementor_header_footer'),
(2065, 187, '_elementor_edit_mode', 'builder'),
(2066, 187, '_elementor_template_type', 'wp-page'),
(2067, 187, '_elementor_version', '4.1.4'),
(2068, 187, '_elementor_pro_version', '4.0.2'),
(2069, 187, '_elementor_global_class_usage_indexed', '1'),
(2070, 187, '_elementor_global_class_usage_indexed_preview', '1'),
(2071, 187, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2072, 187, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section{\\n    \\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2074, 187, '_elementor_page_settings', 'a:0:{}'),
(3292, 280, '_wp_page_template', 'elementor_header_footer'),
(3293, 280, '_elementor_edit_mode', 'builder'),
(3294, 280, '_elementor_template_type', 'wp-page'),
(3295, 280, '_elementor_version', '4.1.4'),
(3296, 280, '_elementor_pro_version', '4.0.2'),
(3297, 280, '_elementor_global_class_usage_indexed', '1'),
(3298, 280, '_elementor_global_class_usage_indexed_preview', '1'),
(3299, 280, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3300, 280, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2077, 188, '_wp_page_template', 'elementor_header_footer'),
(2078, 188, '_elementor_edit_mode', 'builder'),
(2079, 188, '_elementor_template_type', 'wp-page'),
(2080, 188, '_elementor_version', '4.1.4'),
(2081, 188, '_elementor_pro_version', '4.0.2'),
(2082, 188, '_elementor_global_class_usage_indexed', '1'),
(2083, 188, '_elementor_global_class_usage_indexed_preview', '1'),
(2084, 188, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2085, 188, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section{\\n    \\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2087, 188, '_elementor_page_settings', 'a:0:{}'),
(2173, 195, '_elementor_edit_mode', 'builder'),
(2174, 195, '_elementor_template_type', 'wp-page'),
(2175, 195, '_elementor_version', '4.1.4'),
(2176, 195, '_elementor_pro_version', '4.0.2'),
(2177, 195, '_elementor_global_class_usage_indexed', '1'),
(2178, 195, '_elementor_global_class_usage_indexed_preview', '1'),
(2179, 195, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2180, 195, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2090, 189, '_wp_page_template', 'elementor_header_footer'),
(2091, 189, '_elementor_edit_mode', 'builder'),
(2092, 189, '_elementor_template_type', 'wp-page'),
(2093, 189, '_elementor_version', '4.1.4'),
(2094, 189, '_elementor_pro_version', '4.0.2'),
(2095, 189, '_elementor_global_class_usage_indexed', '1'),
(2096, 189, '_elementor_global_class_usage_indexed_preview', '1'),
(2097, 189, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2098, 189, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style{\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img{\\r\\n    display: block;\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2105, 190, '_wp_page_template', 'elementor_header_footer'),
(2106, 190, '_elementor_edit_mode', 'builder'),
(2107, 190, '_elementor_template_type', 'wp-page'),
(2108, 190, '_elementor_version', '4.1.4'),
(2109, 190, '_elementor_pro_version', '4.0.2'),
(2110, 190, '_elementor_global_class_usage_indexed', '1'),
(2111, 190, '_elementor_global_class_usage_indexed_preview', '1'),
(2112, 190, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2113, 190, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style{\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img{\\r\\n    display: block;\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2115, 190, '_elementor_page_settings', 'a:0:{}'),
(3277, 279, '_wp_page_template', 'elementor_header_footer'),
(3278, 279, '_elementor_edit_mode', 'builder'),
(3279, 279, '_elementor_template_type', 'wp-page'),
(3280, 279, '_elementor_version', '4.1.4'),
(3281, 279, '_elementor_pro_version', '4.0.2'),
(3282, 279, '_elementor_global_class_usage_indexed', '1'),
(3283, 279, '_elementor_global_class_usage_indexed_preview', '1'),
(3284, 279, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3285, 279, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2118, 191, '_wp_page_template', 'elementor_header_footer'),
(2119, 191, '_elementor_edit_mode', 'builder'),
(2120, 191, '_elementor_template_type', 'wp-page'),
(2121, 191, '_elementor_version', '4.1.4'),
(2122, 191, '_elementor_pro_version', '4.0.2'),
(2123, 191, '_elementor_global_class_usage_indexed', '1'),
(2124, 191, '_elementor_global_class_usage_indexed_preview', '1'),
(2125, 191, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2126, 191, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style{\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img{\\r\\n    display: block;\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2128, 191, '_elementor_page_settings', 'a:0:{}'),
(3274, 278, '_elementor_page_settings', 'a:0:{}'),
(2131, 192, '_wp_page_template', 'elementor_header_footer'),
(2132, 192, '_elementor_edit_mode', 'builder'),
(2133, 192, '_elementor_template_type', 'wp-page'),
(2134, 192, '_elementor_version', '4.1.4'),
(2135, 192, '_elementor_pro_version', '4.0.2'),
(2136, 192, '_elementor_global_class_usage_indexed', '1'),
(2137, 192, '_elementor_global_class_usage_indexed_preview', '1'),
(2138, 192, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2139, 192, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\"\\/*.hero-section .image_style{*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img{*\\/\\r\\n\\/*    display: block;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2214, 198, '_elementor_edit_mode', 'builder'),
(2146, 193, '_wp_page_template', 'elementor_header_footer'),
(2147, 193, '_elementor_edit_mode', 'builder'),
(2148, 193, '_elementor_template_type', 'wp-page'),
(2149, 193, '_elementor_version', '4.1.4'),
(2150, 193, '_elementor_pro_version', '4.0.2'),
(2151, 193, '_elementor_global_class_usage_indexed', '1'),
(2152, 193, '_elementor_global_class_usage_indexed_preview', '1'),
(2153, 193, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2154, 193, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\"\\/*.hero-section .image_style{*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img{*\\/\\r\\n\\/*    display: block;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2156, 193, '_elementor_page_settings', 'a:0:{}'),
(3264, 278, '_wp_page_template', 'elementor_header_footer'),
(3265, 278, '_elementor_edit_mode', 'builder'),
(3266, 278, '_elementor_template_type', 'wp-page'),
(3267, 278, '_elementor_version', '4.1.4'),
(3268, 278, '_elementor_pro_version', '4.0.2'),
(3269, 278, '_elementor_global_class_usage_indexed', '1'),
(3270, 278, '_elementor_global_class_usage_indexed_preview', '1'),
(3271, 278, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3272, 278, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2159, 194, '_wp_page_template', 'elementor_header_footer'),
(2160, 194, '_elementor_edit_mode', 'builder'),
(2161, 194, '_elementor_template_type', 'wp-page'),
(2162, 194, '_elementor_version', '4.1.4'),
(2163, 194, '_elementor_pro_version', '4.0.2'),
(2164, 194, '_elementor_global_class_usage_indexed', '1'),
(2165, 194, '_elementor_global_class_usage_indexed_preview', '1'),
(2166, 194, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2167, 194, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\"\\/*.hero-section .image_style{*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img{*\\/\\r\\n\\/*    display: block;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n.hero-section .image_style::before{\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0;\\r\\n    width: 100%;\\r\\n    height: 140%;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        transparent 0%,\\r\\n        rgba(255,255,255,.35) 35%,\\r\\n        rgba(255,255,255,.95) 50%,\\r\\n        rgba(255,255,255,.35) 65%,\\r\\n        transparent 100%\\r\\n    );\\r\\n    filter: blur(18px);\\r\\n    pointer-events: none;\\r\\n    z-index: 2;\\r\\n    animation: imageShine 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes imageShine{\\r\\n    0%{\\r\\n        top: -140%;\\r\\n    }\\r\\n    20%{\\r\\n        top: 100%;\\r\\n    }\\r\\n    100%{\\r\\n        top: 100%;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2169, 194, '_elementor_page_settings', 'a:0:{}'),
(3261, 277, '_elementor_page_settings', 'a:0:{}'),
(2187, 196, '_wp_page_template', 'elementor_header_footer'),
(2188, 196, '_elementor_edit_mode', 'builder'),
(2189, 196, '_elementor_template_type', 'wp-page'),
(2190, 196, '_elementor_version', '4.1.4'),
(2191, 196, '_elementor_pro_version', '4.0.2'),
(2192, 196, '_elementor_global_class_usage_indexed', '1'),
(2193, 196, '_elementor_global_class_usage_indexed_preview', '1'),
(2194, 196, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2195, 196, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2197, 196, '_elementor_page_settings', 'a:0:{}'),
(3251, 277, '_wp_page_template', 'elementor_header_footer'),
(3252, 277, '_elementor_edit_mode', 'builder'),
(3253, 277, '_elementor_template_type', 'wp-page'),
(3254, 277, '_elementor_version', '4.1.4'),
(3255, 277, '_elementor_pro_version', '4.0.2'),
(3256, 277, '_elementor_global_class_usage_indexed', '1'),
(3257, 277, '_elementor_global_class_usage_indexed_preview', '1'),
(3258, 277, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3259, 277, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2200, 197, '_wp_page_template', 'elementor_header_footer'),
(2201, 197, '_elementor_edit_mode', 'builder'),
(2202, 197, '_elementor_template_type', 'wp-page'),
(2203, 197, '_elementor_version', '4.1.4'),
(2204, 197, '_elementor_pro_version', '4.0.2'),
(2205, 197, '_elementor_global_class_usage_indexed', '1'),
(2206, 197, '_elementor_global_class_usage_indexed_preview', '1'),
(2207, 197, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2208, 197, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2210, 197, '_elementor_page_settings', 'a:0:{}'),
(2215, 198, '_elementor_template_type', 'wp-page'),
(2216, 198, '_elementor_version', '4.1.4'),
(2217, 198, '_elementor_pro_version', '4.0.2'),
(2218, 198, '_elementor_global_class_usage_indexed', '1'),
(2219, 198, '_elementor_global_class_usage_indexed_preview', '1'),
(2220, 198, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2221, 198, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2228, 199, '_wp_page_template', 'elementor_header_footer'),
(2229, 199, '_elementor_edit_mode', 'builder'),
(2230, 199, '_elementor_template_type', 'wp-page'),
(2231, 199, '_elementor_version', '4.1.4'),
(2232, 199, '_elementor_pro_version', '4.0.2'),
(2233, 199, '_elementor_global_class_usage_indexed', '1'),
(2234, 199, '_elementor_global_class_usage_indexed_preview', '1'),
(2235, 199, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2236, 199, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2238, 199, '_elementor_page_settings', 'a:0:{}'),
(3237, 276, '_elementor_edit_mode', 'builder'),
(3238, 276, '_elementor_template_type', 'wp-page'),
(3239, 276, '_elementor_version', '4.1.4'),
(3240, 276, '_elementor_pro_version', '4.0.2'),
(3241, 276, '_elementor_global_class_usage_indexed', '1'),
(3242, 276, '_elementor_global_class_usage_indexed_preview', '1'),
(3243, 276, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3244, 276, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2241, 200, '_wp_page_template', 'elementor_header_footer'),
(2242, 200, '_elementor_edit_mode', 'builder'),
(2243, 200, '_elementor_template_type', 'wp-page'),
(2244, 200, '_elementor_version', '4.1.4'),
(2245, 200, '_elementor_pro_version', '4.0.2'),
(2246, 200, '_elementor_global_class_usage_indexed', '1'),
(2247, 200, '_elementor_global_class_usage_indexed_preview', '1'),
(2248, 200, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2249, 200, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2251, 200, '_elementor_page_settings', 'a:0:{}'),
(3233, 275, '_elementor_page_settings', 'a:0:{}'),
(2254, 201, '_wp_page_template', 'elementor_header_footer'),
(2255, 201, '_elementor_edit_mode', 'builder'),
(2256, 201, '_elementor_template_type', 'wp-page'),
(2257, 201, '_elementor_version', '4.1.4'),
(2258, 201, '_elementor_pro_version', '4.0.2'),
(2259, 201, '_elementor_global_class_usage_indexed', '1'),
(2260, 201, '_elementor_global_class_usage_indexed_preview', '1'),
(2261, 201, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2262, 201, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2339, 208, '_elementor_edit_mode', 'builder'),
(2269, 202, '_wp_attached_file', '2026/07/banner-30.png'),
(2270, 202, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1942;s:6:\"height\";i:809;s:4:\"file\";s:21:\"2026/07/banner-30.png\";s:8:\"filesize\";i:214629;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-30-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:622;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-30-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-30-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-30-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3749;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-30-1536x640.png\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11320;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(2271, 203, '_wp_page_template', 'elementor_header_footer'),
(2272, 203, '_elementor_edit_mode', 'builder'),
(2273, 203, '_elementor_template_type', 'wp-page'),
(2274, 203, '_elementor_version', '4.1.4'),
(2275, 203, '_elementor_pro_version', '4.0.2'),
(2276, 203, '_elementor_global_class_usage_indexed', '1'),
(2277, 203, '_elementor_global_class_usage_indexed_preview', '1'),
(2278, 203, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2279, 203, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2281, 203, '_elementor_page_settings', 'a:0:{}'),
(3223, 275, '_wp_page_template', 'elementor_header_footer'),
(3224, 275, '_elementor_edit_mode', 'builder'),
(3225, 275, '_elementor_template_type', 'wp-page'),
(3226, 275, '_elementor_version', '4.1.4'),
(3227, 275, '_elementor_pro_version', '4.0.2'),
(3228, 275, '_elementor_global_class_usage_indexed', '1'),
(3229, 275, '_elementor_global_class_usage_indexed_preview', '1'),
(3230, 275, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3231, 275, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2284, 204, '_wp_page_template', 'elementor_header_footer'),
(2285, 204, '_elementor_edit_mode', 'builder'),
(2286, 204, '_elementor_template_type', 'wp-page'),
(2287, 204, '_elementor_version', '4.1.4'),
(2288, 204, '_elementor_pro_version', '4.0.2'),
(2289, 204, '_elementor_global_class_usage_indexed', '1'),
(2290, 204, '_elementor_global_class_usage_indexed_preview', '1'),
(2291, 204, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2292, 204, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/bg-1.png\",\"id\":180,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2294, 204, '_elementor_page_settings', 'a:0:{}'),
(3220, 274, '_elementor_page_settings', 'a:0:{}'),
(2338, 208, '_wp_page_template', 'elementor_header_footer'),
(2297, 205, '_wp_page_template', 'elementor_header_footer'),
(2298, 205, '_elementor_edit_mode', 'builder'),
(2299, 205, '_elementor_template_type', 'wp-page'),
(2300, 205, '_elementor_version', '4.1.4'),
(2301, 205, '_elementor_pro_version', '4.0.2'),
(2302, 205, '_elementor_global_class_usage_indexed', '1'),
(2303, 205, '_elementor_global_class_usage_indexed_preview', '1'),
(2304, 205, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2305, 205, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2957, 252, '_wp_page_template', 'default'),
(2958, 252, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2959, 252, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2960, 252, '_elementor_page_settings', 'a:0:{}'),
(2312, 206, '_wp_page_template', 'elementor_header_footer'),
(2313, 206, '_elementor_edit_mode', 'builder'),
(2314, 206, '_elementor_template_type', 'wp-page'),
(2315, 206, '_elementor_version', '4.1.4'),
(2316, 206, '_elementor_pro_version', '4.0.2'),
(2317, 206, '_elementor_global_class_usage_indexed', '1'),
(2318, 206, '_elementor_global_class_usage_indexed_preview', '1'),
(2319, 206, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2320, 206, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2953, 252, '_elementor_pro_version', '4.0.2'),
(2954, 252, '_elementor_global_class_usage_indexed', '1'),
(2955, 252, '_elementor_global_class_usage_indexed_preview', '1'),
(2956, 252, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2322, 206, '_elementor_page_settings', 'a:0:{}'),
(2325, 207, '_wp_page_template', 'elementor_header_footer'),
(2326, 207, '_elementor_edit_mode', 'builder'),
(2327, 207, '_elementor_template_type', 'wp-page'),
(2328, 207, '_elementor_version', '4.1.4'),
(2329, 207, '_elementor_pro_version', '4.0.2'),
(2330, 207, '_elementor_global_class_usage_indexed', '1'),
(2331, 207, '_elementor_global_class_usage_indexed_preview', '1'),
(2332, 207, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2333, 207, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2950, 252, '_elementor_edit_mode', 'builder'),
(2951, 252, '_elementor_template_type', 'header'),
(2952, 252, '_elementor_version', '4.1.4'),
(2335, 207, '_elementor_page_settings', 'a:0:{}'),
(3210, 274, '_wp_page_template', 'elementor_header_footer'),
(3211, 274, '_elementor_edit_mode', 'builder'),
(3212, 274, '_elementor_template_type', 'wp-page'),
(3213, 274, '_elementor_version', '4.1.4'),
(3214, 274, '_elementor_pro_version', '4.0.2'),
(3215, 274, '_elementor_global_class_usage_indexed', '1'),
(3216, 274, '_elementor_global_class_usage_indexed_preview', '1'),
(3217, 274, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3218, 274, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2340, 208, '_elementor_template_type', 'wp-page'),
(2341, 208, '_elementor_version', '4.1.4'),
(2342, 208, '_elementor_pro_version', '4.0.2'),
(2343, 208, '_elementor_global_class_usage_indexed', '1'),
(2344, 208, '_elementor_global_class_usage_indexed_preview', '1'),
(2345, 208, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2346, 208, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3079, 261, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3080, 261, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2353, 209, '_wp_page_template', 'elementor_header_footer'),
(2354, 209, '_elementor_edit_mode', 'builder'),
(2355, 209, '_elementor_template_type', 'wp-page'),
(2356, 209, '_elementor_version', '4.1.4'),
(2357, 209, '_elementor_pro_version', '4.0.2'),
(2358, 209, '_elementor_global_class_usage_indexed', '1'),
(2359, 209, '_elementor_global_class_usage_indexed_preview', '1'),
(2360, 209, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2361, 209, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3075, 261, '_elementor_version', '4.1.4'),
(3076, 261, '_elementor_pro_version', '4.0.2'),
(3077, 261, '_elementor_global_class_usage_indexed', '1'),
(3078, 261, '_elementor_global_class_usage_indexed_preview', '1'),
(2363, 209, '_elementor_page_settings', 'a:0:{}'),
(7117, 577, '_elementor_edit_mode', 'builder'),
(6893, 560, '_wp_page_template', 'elementor_header_footer'),
(6894, 560, '_elementor_edit_mode', 'builder'),
(6895, 560, '_elementor_template_type', 'wp-page'),
(6896, 560, '_elementor_version', '4.1.4'),
(6897, 560, '_elementor_pro_version', '4.1.2'),
(6898, 560, '_elementor_global_class_usage_indexed', '1'),
(6899, 560, '_elementor_global_class_usage_indexed_preview', '1'),
(6900, 560, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6901, 560, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2366, 210, '_wp_page_template', 'elementor_header_footer'),
(2367, 210, '_elementor_edit_mode', 'builder'),
(2368, 210, '_elementor_template_type', 'wp-page'),
(2369, 210, '_elementor_version', '4.1.4'),
(2370, 210, '_elementor_pro_version', '4.0.2'),
(2371, 210, '_elementor_global_class_usage_indexed', '1'),
(2372, 210, '_elementor_global_class_usage_indexed_preview', '1'),
(2373, 210, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2374, 210, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n        to bottom,\\r\\n        rgba(255,255,255,0) 0%,\\r\\n        rgba(255,255,255,.9) 50%,\\r\\n        rgba(255,255,255,0) 100%\\r\\n    );\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3072, 261, '_wp_page_template', 'elementor_header_footer'),
(3073, 261, '_elementor_edit_mode', 'builder'),
(3074, 261, '_elementor_template_type', 'wp-page'),
(3033, 258, '_wp_page_template', 'elementor_header_footer'),
(2376, 210, '_elementor_page_settings', 'a:0:{}'),
(2379, 211, '_wp_page_template', 'elementor_header_footer'),
(2380, 211, '_elementor_edit_mode', 'builder'),
(2381, 211, '_elementor_template_type', 'wp-page'),
(2382, 211, '_elementor_version', '4.1.4'),
(2383, 211, '_elementor_pro_version', '4.0.2'),
(2384, 211, '_elementor_global_class_usage_indexed', '1'),
(2385, 211, '_elementor_global_class_usage_indexed_preview', '1'),
(2386, 211, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2387, 211, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.08) 20%,\\r\\n    rgba(255,255,255,.25) 35%,\\r\\n    rgba(255,255,255,.75) 50%,\\r\\n    rgba(255,255,255,.25) 65%,\\r\\n    rgba(255,255,255,.08) 80%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3034, 258, '_elementor_edit_mode', 'builder'),
(3035, 258, '_elementor_template_type', 'wp-page'),
(3036, 258, '_elementor_version', '4.1.4'),
(3037, 258, '_elementor_pro_version', '4.0.2'),
(3038, 258, '_elementor_global_class_usage_indexed', '1'),
(3039, 258, '_elementor_global_class_usage_indexed_preview', '1'),
(3040, 258, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3041, 258, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2461, 217, '_wp_page_template', 'elementor_header_footer'),
(2394, 212, '_wp_page_template', 'elementor_header_footer'),
(2395, 212, '_elementor_edit_mode', 'builder'),
(2396, 212, '_elementor_template_type', 'wp-page'),
(2397, 212, '_elementor_version', '4.1.4'),
(2398, 212, '_elementor_pro_version', '4.0.2'),
(2399, 212, '_elementor_global_class_usage_indexed', '1'),
(2400, 212, '_elementor_global_class_usage_indexed_preview', '1'),
(2401, 212, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2402, 212, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.08) 20%,\\r\\n    rgba(255,255,255,.25) 35%,\\r\\n    rgba(255,255,255,.75) 50%,\\r\\n    rgba(255,255,255,.25) 65%,\\r\\n    rgba(255,255,255,.08) 80%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2404, 212, '_elementor_page_settings', 'a:0:{}'),
(3194, 272, '_elementor_page_settings', 'a:0:{}'),
(2407, 213, '_wp_page_template', 'elementor_header_footer'),
(2408, 213, '_elementor_edit_mode', 'builder'),
(2409, 213, '_elementor_template_type', 'wp-page'),
(2410, 213, '_elementor_version', '4.1.4'),
(2411, 213, '_elementor_pro_version', '4.0.2'),
(2412, 213, '_elementor_global_class_usage_indexed', '1'),
(2413, 213, '_elementor_global_class_usage_indexed_preview', '1'),
(2414, 213, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2415, 213, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.08) 20%,\\r\\n    rgba(255,255,255,.25) 35%,\\r\\n    rgba(255,255,255,.75) 50%,\\r\\n    rgba(255,255,255,.25) 65%,\\r\\n    rgba(255,255,255,.08) 80%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(20px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2417, 213, '_elementor_page_settings', 'a:0:{}'),
(3184, 272, '_wp_page_template', 'elementor_header_footer'),
(3185, 272, '_elementor_edit_mode', 'builder'),
(3186, 272, '_elementor_template_type', 'wp-page'),
(3187, 272, '_elementor_version', '4.1.4'),
(3188, 272, '_elementor_pro_version', '4.0.2'),
(3189, 272, '_elementor_global_class_usage_indexed', '1'),
(3190, 272, '_elementor_global_class_usage_indexed_preview', '1'),
(3191, 272, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3192, 272, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2885, 247, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(2420, 214, '_wp_page_template', 'elementor_header_footer'),
(2421, 214, '_elementor_edit_mode', 'builder'),
(2422, 214, '_elementor_template_type', 'wp-page'),
(2423, 214, '_elementor_version', '4.1.4'),
(2424, 214, '_elementor_pro_version', '4.0.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2425, 214, '_elementor_global_class_usage_indexed', '1'),
(2426, 214, '_elementor_global_class_usage_indexed_preview', '1'),
(2427, 214, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2428, 214, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3043, 258, '_elementor_page_settings', 'a:0:{}'),
(2502, 220, '_wp_page_template', 'elementor_header_footer'),
(2435, 215, '_wp_page_template', 'elementor_header_footer'),
(2436, 215, '_elementor_edit_mode', 'builder'),
(2437, 215, '_elementor_template_type', 'wp-page'),
(2438, 215, '_elementor_version', '4.1.4'),
(2439, 215, '_elementor_pro_version', '4.0.2'),
(2440, 215, '_elementor_global_class_usage_indexed', '1'),
(2441, 215, '_elementor_global_class_usage_indexed_preview', '1'),
(2442, 215, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2443, 215, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2445, 215, '_elementor_page_settings', 'a:0:{}'),
(2448, 216, '_wp_page_template', 'elementor_header_footer'),
(2449, 216, '_elementor_edit_mode', 'builder'),
(2450, 216, '_elementor_template_type', 'wp-page'),
(2451, 216, '_elementor_version', '4.1.4'),
(2452, 216, '_elementor_pro_version', '4.0.2'),
(2453, 216, '_elementor_global_class_usage_indexed', '1'),
(2454, 216, '_elementor_global_class_usage_indexed_preview', '1'),
(2455, 216, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2456, 216, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 90%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2458, 216, '_elementor_page_settings', 'a:0:{}'),
(3169, 270, '_wp_attached_file', '2026/07/about-40-1.jpg'),
(3170, 270, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:882;s:4:\"file\";s:22:\"2026/07/about-40-1.jpg\";s:8:\"filesize\";i:182003;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"about-40-1-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13702;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"about-40-1-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"about-40-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:7177;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"about-40-1-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57687;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(3182, 271, '_elementor_page_settings', 'a:0:{}'),
(2462, 217, '_elementor_edit_mode', 'builder'),
(2463, 217, '_elementor_template_type', 'wp-page'),
(2464, 217, '_elementor_version', '4.1.4'),
(2465, 217, '_elementor_pro_version', '4.0.2'),
(2466, 217, '_elementor_global_class_usage_indexed', '1'),
(2467, 217, '_elementor_global_class_usage_indexed_preview', '1'),
(2468, 217, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2469, 217, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3046, 259, '_wp_page_template', 'elementor_header_footer'),
(3047, 259, '_elementor_edit_mode', 'builder'),
(3048, 259, '_elementor_template_type', 'wp-page'),
(3049, 259, '_elementor_version', '4.1.4'),
(3050, 259, '_elementor_pro_version', '4.0.2'),
(3051, 259, '_elementor_global_class_usage_indexed', '1'),
(3052, 259, '_elementor_global_class_usage_indexed_preview', '1'),
(3053, 259, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3054, 259, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2543, 223, '_wp_page_template', 'elementor_header_footer'),
(2476, 218, '_wp_page_template', 'elementor_header_footer'),
(2477, 218, '_elementor_edit_mode', 'builder'),
(2478, 218, '_elementor_template_type', 'wp-page'),
(2479, 218, '_elementor_version', '4.1.4'),
(2480, 218, '_elementor_pro_version', '4.0.2'),
(2481, 218, '_elementor_global_class_usage_indexed', '1'),
(2482, 218, '_elementor_global_class_usage_indexed_preview', '1'),
(2483, 218, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2484, 218, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2486, 218, '_elementor_page_settings', 'a:0:{}'),
(3172, 271, '_wp_page_template', 'elementor_header_footer'),
(3173, 271, '_elementor_edit_mode', 'builder'),
(3174, 271, '_elementor_template_type', 'wp-page'),
(3175, 271, '_elementor_version', '4.1.4'),
(3176, 271, '_elementor_pro_version', '4.0.2'),
(3177, 271, '_elementor_global_class_usage_indexed', '1'),
(3178, 271, '_elementor_global_class_usage_indexed_preview', '1'),
(3179, 271, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3180, 271, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2489, 219, '_wp_page_template', 'elementor_header_footer'),
(2490, 219, '_elementor_edit_mode', 'builder'),
(2491, 219, '_elementor_template_type', 'wp-page'),
(2492, 219, '_elementor_version', '4.1.4'),
(2493, 219, '_elementor_pro_version', '4.0.2'),
(2494, 219, '_elementor_global_class_usage_indexed', '1'),
(2495, 219, '_elementor_global_class_usage_indexed_preview', '1'),
(2496, 219, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2497, 219, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 60px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2499, 219, '_elementor_page_settings', 'a:0:{}'),
(3197, 273, '_elementor_edit_mode', 'builder'),
(3198, 273, '_elementor_template_type', 'wp-page'),
(3199, 273, '_elementor_version', '4.1.4'),
(3200, 273, '_elementor_pro_version', '4.0.2'),
(3201, 273, '_elementor_global_class_usage_indexed', '1'),
(3202, 273, '_elementor_global_class_usage_indexed_preview', '1'),
(3203, 273, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3204, 273, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3196, 273, '_wp_page_template', 'elementor_header_footer'),
(2503, 220, '_elementor_edit_mode', 'builder'),
(2504, 220, '_elementor_template_type', 'wp-page'),
(2505, 220, '_elementor_version', '4.1.4'),
(2506, 220, '_elementor_pro_version', '4.0.2'),
(2507, 220, '_elementor_global_class_usage_indexed', '1'),
(2508, 220, '_elementor_global_class_usage_indexed_preview', '1'),
(2509, 220, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2510, 220, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2584, 226, '_wp_page_template', 'elementor_header_footer'),
(2517, 221, '_wp_page_template', 'elementor_header_footer'),
(2518, 221, '_elementor_edit_mode', 'builder'),
(2519, 221, '_elementor_template_type', 'wp-page'),
(2520, 221, '_elementor_version', '4.1.4'),
(2521, 221, '_elementor_pro_version', '4.0.2'),
(2522, 221, '_elementor_global_class_usage_indexed', '1'),
(2523, 221, '_elementor_global_class_usage_indexed_preview', '1'),
(2524, 221, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2525, 221, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2527, 221, '_elementor_page_settings', 'a:0:{}'),
(3448, 291, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3449, 291, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2530, 222, '_wp_page_template', 'elementor_header_footer'),
(2531, 222, '_elementor_edit_mode', 'builder'),
(2532, 222, '_elementor_template_type', 'wp-page'),
(2533, 222, '_elementor_version', '4.1.4'),
(2534, 222, '_elementor_pro_version', '4.0.2'),
(2535, 222, '_elementor_global_class_usage_indexed', '1'),
(2536, 222, '_elementor_global_class_usage_indexed_preview', '1'),
(2537, 222, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2538, 222, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(6059, 510, '_elementor_edit_mode', 'builder'),
(2540, 222, '_elementor_page_settings', 'a:0:{}'),
(3444, 291, '_elementor_version', '4.1.4'),
(3445, 291, '_elementor_pro_version', '4.0.2'),
(3446, 291, '_elementor_global_class_usage_indexed', '1'),
(3447, 291, '_elementor_global_class_usage_indexed_preview', '1'),
(3236, 276, '_wp_page_template', 'elementor_header_footer'),
(3154, 268, '_wp_attached_file', '2026/07/about-17.jpeg'),
(3155, 268, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:882;s:4:\"file\";s:21:\"2026/07/about-17.jpeg\";s:8:\"filesize\";i:186278;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"about-17-300x176.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17797;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"about-17-1024x602.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"about-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:8299;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"about-17-768x452.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79125;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(2544, 223, '_elementor_edit_mode', 'builder'),
(2545, 223, '_elementor_template_type', 'wp-page'),
(2546, 223, '_elementor_version', '4.1.4'),
(2547, 223, '_elementor_pro_version', '4.0.2'),
(2548, 223, '_elementor_global_class_usage_indexed', '1'),
(2549, 223, '_elementor_global_class_usage_indexed_preview', '1'),
(2550, 223, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2551, 223, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3059, 260, '_wp_page_template', 'elementor_header_footer'),
(3060, 260, '_elementor_edit_mode', 'builder'),
(3061, 260, '_elementor_template_type', 'wp-page'),
(3062, 260, '_elementor_version', '4.1.4'),
(3063, 260, '_elementor_pro_version', '4.0.2'),
(3064, 260, '_elementor_global_class_usage_indexed', '1'),
(3065, 260, '_elementor_global_class_usage_indexed_preview', '1'),
(3066, 260, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3067, 260, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3019, 257, '_wp_page_template', 'elementor_header_footer'),
(3020, 257, '_elementor_edit_mode', 'builder'),
(3021, 257, '_elementor_template_type', 'wp-page'),
(3022, 257, '_elementor_version', '4.1.4'),
(3023, 257, '_elementor_pro_version', '4.0.2'),
(3024, 257, '_elementor_global_class_usage_indexed', '1'),
(3025, 257, '_elementor_global_class_usage_indexed_preview', '1'),
(3026, 257, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3027, 257, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2625, 229, '_wp_page_template', 'elementor_header_footer'),
(2558, 224, '_wp_page_template', 'elementor_header_footer'),
(2559, 224, '_elementor_edit_mode', 'builder'),
(2560, 224, '_elementor_template_type', 'wp-page'),
(2561, 224, '_elementor_version', '4.1.4'),
(2562, 224, '_elementor_pro_version', '4.0.2'),
(2563, 224, '_elementor_global_class_usage_indexed', '1'),
(2564, 224, '_elementor_global_class_usage_indexed_preview', '1'),
(2565, 224, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2566, 224, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2568, 224, '_elementor_page_settings', 'a:0:{}'),
(3484, 295, '_wp_page_template', 'elementor_header_footer'),
(3441, 291, '_wp_page_template', 'elementor_header_footer'),
(3442, 291, '_elementor_edit_mode', 'builder'),
(3443, 291, '_elementor_template_type', 'wp-page'),
(2571, 225, '_wp_page_template', 'elementor_header_footer'),
(2572, 225, '_elementor_edit_mode', 'builder'),
(2573, 225, '_elementor_template_type', 'wp-page'),
(2574, 225, '_elementor_version', '4.1.4'),
(2575, 225, '_elementor_pro_version', '4.0.2'),
(2576, 225, '_elementor_global_class_usage_indexed', '1'),
(2577, 225, '_elementor_global_class_usage_indexed_preview', '1'),
(2578, 225, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2579, 225, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(7px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2581, 225, '_elementor_page_settings', 'a:0:{}'),
(2585, 226, '_elementor_edit_mode', 'builder'),
(2586, 226, '_elementor_template_type', 'wp-page'),
(2587, 226, '_elementor_version', '4.1.4'),
(2588, 226, '_elementor_pro_version', '4.0.2'),
(2589, 226, '_elementor_global_class_usage_indexed', '1'),
(2590, 226, '_elementor_global_class_usage_indexed_preview', '1'),
(2591, 226, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2592, 226, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(6082, 511, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2884, 247, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2599, 227, '_wp_page_template', 'elementor_header_footer'),
(2600, 227, '_elementor_edit_mode', 'builder'),
(2601, 227, '_elementor_template_type', 'wp-page'),
(2602, 227, '_elementor_version', '4.1.4'),
(2603, 227, '_elementor_pro_version', '4.0.2'),
(2604, 227, '_elementor_global_class_usage_indexed', '1'),
(2605, 227, '_elementor_global_class_usage_indexed_preview', '1'),
(2606, 227, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2607, 227, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2609, 227, '_elementor_page_settings', 'a:0:{}'),
(6703, 548, '_elementor_edit_mode', 'builder'),
(6704, 548, '_elementor_template_type', 'wp-page'),
(6705, 548, '_elementor_version', '4.1.4'),
(6706, 548, '_elementor_pro_version', '4.1.2'),
(6707, 548, '_elementor_global_class_usage_indexed', '1'),
(6708, 548, '_elementor_global_class_usage_indexed_preview', '1'),
(6709, 548, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6710, 548, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3139, 267, '_wp_page_template', 'elementor_header_footer'),
(3140, 267, '_elementor_edit_mode', 'builder'),
(3141, 267, '_elementor_template_type', 'wp-page'),
(3142, 267, '_elementor_version', '4.1.4'),
(3143, 267, '_elementor_pro_version', '4.0.2'),
(3144, 267, '_elementor_global_class_usage_indexed', '1'),
(3145, 267, '_elementor_global_class_usage_indexed_preview', '1'),
(3146, 267, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3147, 267, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2612, 228, '_wp_page_template', 'elementor_header_footer'),
(2613, 228, '_elementor_edit_mode', 'builder'),
(2614, 228, '_elementor_template_type', 'wp-page'),
(2615, 228, '_elementor_version', '4.1.4'),
(2616, 228, '_elementor_pro_version', '4.0.2'),
(2617, 228, '_elementor_global_class_usage_indexed', '1'),
(2618, 228, '_elementor_global_class_usage_indexed_preview', '1'),
(2619, 228, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2620, 228, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2622, 228, '_elementor_page_settings', 'a:0:{}'),
(3136, 266, '_elementor_page_settings', 'a:0:{}'),
(2626, 229, '_elementor_edit_mode', 'builder'),
(2627, 229, '_elementor_template_type', 'wp-page'),
(2628, 229, '_elementor_version', '4.1.4'),
(2629, 229, '_elementor_pro_version', '4.0.2'),
(2630, 229, '_elementor_global_class_usage_indexed', '1'),
(2631, 229, '_elementor_global_class_usage_indexed_preview', '1'),
(2632, 229, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2633, 229, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(6073, 511, '_elementor_edit_mode', 'builder'),
(6074, 511, '_elementor_template_type', 'header'),
(6075, 511, '_elementor_version', '4.1.4'),
(6076, 511, '_elementor_pro_version', '4.0.2'),
(6077, 511, '_elementor_global_class_usage_indexed', '1'),
(6078, 511, '_elementor_global_class_usage_indexed_preview', '1'),
(6079, 511, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6080, 511, '_wp_page_template', 'default'),
(6081, 511, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"Payment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2995, 255, '_wp_page_template', 'elementor_header_footer'),
(2996, 255, '_elementor_edit_mode', 'builder'),
(2997, 255, '_elementor_template_type', 'wp-page'),
(2998, 255, '_elementor_version', '4.1.4'),
(2999, 255, '_elementor_pro_version', '4.0.2'),
(3000, 255, '_elementor_global_class_usage_indexed', '1'),
(3001, 255, '_elementor_global_class_usage_indexed_preview', '1'),
(3002, 255, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3003, 255, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(2881, 247, '_elementor_pro_version', '4.0.2'),
(2640, 230, '_wp_page_template', 'elementor_header_footer'),
(2641, 230, '_elementor_edit_mode', 'builder'),
(2642, 230, '_elementor_template_type', 'wp-page'),
(2643, 230, '_elementor_version', '4.1.4'),
(2644, 230, '_elementor_pro_version', '4.0.2'),
(2645, 230, '_elementor_global_class_usage_indexed', '1'),
(2646, 230, '_elementor_global_class_usage_indexed_preview', '1'),
(2647, 230, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2648, 230, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2650, 230, '_elementor_page_settings', 'a:0:{}'),
(2653, 231, '_wp_page_template', 'elementor_header_footer'),
(2654, 231, '_elementor_edit_mode', 'builder'),
(2655, 231, '_elementor_template_type', 'wp-page'),
(2656, 231, '_elementor_version', '4.1.4'),
(2657, 231, '_elementor_pro_version', '4.0.2'),
(2658, 231, '_elementor_global_class_usage_indexed', '1'),
(2659, 231, '_elementor_global_class_usage_indexed_preview', '1'),
(2660, 231, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2661, 231, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\".hero-section .image_style {\\r\\n    position: relative;\\r\\n    overflow: hidden;\\r\\n    display: inline-block;\\r\\n}\\r\\n\\r\\n.hero-section .image_style img {\\r\\n    \\/*display: block;*\\/\\r\\n    width: 100%;\\r\\n    height: auto;\\r\\n}\\r\\n\\r\\n.hero-section .image_style::after {\\r\\n    content: \\\"\\\";\\r\\n    position: absolute;\\r\\n    top: -120%;\\r\\n    left: 0px;\\r\\n    width: 100%;\\r\\n    height: 60%;\\r\\n    border-radius: 121px !important;\\r\\n    background: linear-gradient(\\r\\n    to bottom,\\r\\n    rgba(255,255,255,0) 0%,\\r\\n    rgba(255,255,255,.02) 15%,\\r\\n    rgba(255,255,255,.06) 25%,\\r\\n    rgba(255,255,255,.12) 35%,\\r\\n    rgba(255,255,255,.25) 45%,\\r\\n    rgba(255,255,255,.55) 50%,\\r\\n    rgba(255,255,255,.25) 55%,\\r\\n    rgba(255,255,255,.12) 65%,\\r\\n    rgba(255,255,255,.06) 75%,\\r\\n    rgba(255,255,255,.02) 85%,\\r\\n    rgba(255,255,255,0) 100%\\r\\n);\\r\\n    filter: blur(27px);\\r\\n    pointer-events: none;\\r\\n    animation: shineDown 3s linear infinite;\\r\\n}\\r\\n\\r\\n@keyframes shineDown {\\r\\n    0% {\\r\\n        top: -120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    10% {\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    30% {\\r\\n        top: 120%;\\r\\n        opacity: 1;\\r\\n    }\\r\\n\\r\\n    40% {\\r\\n        opacity: 0;\\r\\n    }\\r\\n\\r\\n    100% {\\r\\n        top: 120%;\\r\\n        opacity: 0;\\r\\n    }\\r\\n}\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2663, 231, '_elementor_page_settings', 'a:0:{}'),
(3126, 266, '_wp_page_template', 'elementor_header_footer'),
(3127, 266, '_elementor_edit_mode', 'builder'),
(3128, 266, '_elementor_template_type', 'wp-page'),
(3129, 266, '_elementor_version', '4.1.4'),
(3130, 266, '_elementor_pro_version', '4.0.2'),
(3131, 266, '_elementor_global_class_usage_indexed', '1'),
(3132, 266, '_elementor_global_class_usage_indexed_preview', '1'),
(3133, 266, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3134, 266, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2882, 247, '_elementor_global_class_usage_indexed', '1'),
(2883, 247, '_elementor_global_class_usage_indexed_preview', '1'),
(2666, 232, '_wp_page_template', 'elementor_header_footer'),
(2667, 232, '_elementor_edit_mode', 'builder'),
(2668, 232, '_elementor_template_type', 'wp-page'),
(2669, 232, '_elementor_version', '4.1.4'),
(2670, 232, '_elementor_pro_version', '4.0.2'),
(2671, 232, '_elementor_global_class_usage_indexed', '1'),
(2672, 232, '_elementor_global_class_usage_indexed_preview', '1'),
(2673, 232, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2674, 232, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3004, 255, '_elementor_page_settings', 'a:0:{}'),
(6934, 563, '_elementor_edit_mode', 'builder'),
(6878, 559, '_elementor_template_type', 'header'),
(6879, 559, '_elementor_version', '4.1.4'),
(6880, 559, '_elementor_pro_version', '4.1.2'),
(6881, 559, '_elementor_global_class_usage_indexed', '1'),
(6882, 559, '_elementor_global_class_usage_indexed_preview', '1'),
(6883, 559, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6884, 559, '_wp_page_template', 'default'),
(6885, 559, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3007, 256, '_wp_page_template', 'elementor_header_footer'),
(3008, 256, '_elementor_edit_mode', 'builder'),
(3009, 256, '_elementor_template_type', 'wp-page'),
(3010, 256, '_elementor_version', '4.1.4');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3011, 256, '_elementor_pro_version', '4.0.2'),
(3012, 256, '_elementor_global_class_usage_indexed', '1'),
(3013, 256, '_elementor_global_class_usage_indexed_preview', '1'),
(3014, 256, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3015, 256, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(2880, 247, '_elementor_version', '4.1.4'),
(2681, 233, '_elementor_edit_mode', 'builder'),
(2682, 233, '_elementor_template_type', 'header'),
(2683, 233, '_elementor_version', '4.1.4'),
(2684, 233, '_elementor_pro_version', '4.0.2'),
(2685, 233, '_elementor_global_class_usage_indexed', '1'),
(2686, 233, '_elementor_global_class_usage_indexed_preview', '1'),
(2687, 233, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2688, 233, '_wp_page_template', 'default'),
(2689, 233, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2691, 233, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3123, 265, '_elementor_page_settings', 'a:0:{}'),
(2698, 234, '_elementor_template_type', 'header'),
(2699, 234, '_elementor_version', '4.1.4'),
(2700, 234, '_elementor_pro_version', '4.0.2'),
(2701, 234, '_elementor_global_class_usage_indexed', '1'),
(2702, 234, '_elementor_global_class_usage_indexed_preview', '1'),
(2703, 234, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2704, 234, '_wp_page_template', 'default'),
(2705, 234, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}]},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2707, 234, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2713, 235, '_elementor_edit_mode', 'builder'),
(2714, 235, '_elementor_template_type', 'header'),
(2715, 235, '_elementor_version', '4.1.4'),
(2716, 235, '_elementor_pro_version', '4.0.2'),
(2717, 235, '_elementor_global_class_usage_indexed', '1'),
(2718, 235, '_elementor_global_class_usage_indexed_preview', '1'),
(2719, 235, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2720, 235, '_wp_page_template', 'default'),
(2721, 235, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2723, 235, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3111, 264, '_wp_attached_file', '2026/07/About-Us-3.jpeg'),
(3112, 264, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2026/07/About-Us-3.jpeg\";s:8:\"filesize\";i:66691;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"About-Us-3-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"About-Us-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:6745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"About-Us-3-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60890;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(3113, 265, '_wp_page_template', 'elementor_header_footer'),
(3114, 265, '_elementor_edit_mode', 'builder'),
(3115, 265, '_elementor_template_type', 'wp-page'),
(3116, 265, '_elementor_version', '4.1.4'),
(3117, 265, '_elementor_pro_version', '4.0.2'),
(3118, 265, '_elementor_global_class_usage_indexed', '1'),
(3119, 265, '_elementor_global_class_usage_indexed_preview', '1'),
(3120, 265, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3121, 265, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2784, 240, '_elementor_edit_mode', 'builder'),
(2785, 240, '_elementor_template_type', 'header'),
(2786, 240, '_elementor_version', '4.1.4'),
(2729, 236, '_wp_page_template', 'elementor_header_footer'),
(2730, 236, '_elementor_edit_mode', 'builder'),
(2731, 236, '_elementor_template_type', 'wp-page'),
(2732, 236, '_elementor_version', '4.1.4'),
(2733, 236, '_elementor_pro_version', '4.0.2'),
(2734, 236, '_elementor_global_class_usage_indexed', '1'),
(2735, 236, '_elementor_global_class_usage_indexed_preview', '1'),
(2736, 236, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2737, 236, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2739, 236, '_elementor_page_settings', 'a:0:{}'),
(3538, 299, '_wp_page_template', 'elementor_header_footer'),
(3415, 289, '_wp_page_template', 'elementor_header_footer'),
(3539, 299, '_elementor_edit_mode', 'builder'),
(3540, 299, '_elementor_template_type', 'wp-page'),
(3541, 299, '_elementor_version', '4.1.4'),
(3542, 299, '_elementor_pro_version', '4.0.2'),
(3543, 299, '_elementor_global_class_usage_indexed', '1'),
(3544, 299, '_elementor_global_class_usage_indexed_preview', '1'),
(3545, 299, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3546, 299, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2742, 237, '_wp_page_template', 'elementor_header_footer'),
(2743, 237, '_elementor_edit_mode', 'builder'),
(2744, 237, '_elementor_template_type', 'wp-page'),
(2745, 237, '_elementor_version', '4.1.4'),
(2746, 237, '_elementor_pro_version', '4.0.2'),
(2747, 237, '_elementor_global_class_usage_indexed', '1'),
(2748, 237, '_elementor_global_class_usage_indexed_preview', '1'),
(2749, 237, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2750, 237, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2752, 237, '_elementor_page_settings', 'a:0:{}'),
(2755, 238, '_wp_page_template', 'elementor_header_footer'),
(2756, 238, '_elementor_edit_mode', 'builder'),
(2757, 238, '_elementor_template_type', 'wp-page'),
(2758, 238, '_elementor_version', '4.1.4'),
(2759, 238, '_elementor_pro_version', '4.0.2'),
(2760, 238, '_elementor_global_class_usage_indexed', '1'),
(2761, 238, '_elementor_global_class_usage_indexed_preview', '1'),
(2762, 238, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2763, 238, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(3016, 256, '_elementor_page_settings', 'a:0:{}'),
(2770, 239, '_elementor_edit_mode', 'builder'),
(2771, 239, '_elementor_template_type', 'header'),
(2772, 239, '_elementor_version', '4.1.4'),
(2773, 239, '_elementor_pro_version', '4.0.2'),
(2774, 239, '_elementor_global_class_usage_indexed', '1'),
(2775, 239, '_elementor_global_class_usage_indexed_preview', '1'),
(2776, 239, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2777, 239, '_wp_page_template', 'default'),
(2778, 239, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2780, 239, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3093, 262, '_elementor_page_settings', 'a:0:{}'),
(3094, 263, '_wp_page_template', 'elementor_header_footer'),
(3095, 263, '_elementor_edit_mode', 'builder'),
(3096, 263, '_elementor_template_type', 'wp-page'),
(3097, 263, '_elementor_version', '4.1.4'),
(3098, 263, '_elementor_pro_version', '4.0.2'),
(3099, 263, '_elementor_global_class_usage_indexed', '1'),
(3100, 263, '_elementor_global_class_usage_indexed_preview', '1'),
(3101, 263, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3102, 263, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2796, 241, '_elementor_edit_mode', 'builder'),
(2797, 241, '_elementor_template_type', 'header'),
(2798, 241, '_elementor_version', '4.1.4'),
(2799, 241, '_elementor_pro_version', '4.0.2'),
(2800, 241, '_elementor_global_class_usage_indexed', '1'),
(2801, 241, '_elementor_global_class_usage_indexed_preview', '1'),
(2802, 241, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2803, 241, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2804, 241, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2806, 241, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2964, 253, '_elementor_edit_mode', 'builder'),
(2965, 253, '_elementor_template_type', 'header'),
(2966, 253, '_elementor_version', '4.1.4'),
(2967, 253, '_elementor_pro_version', '4.0.2'),
(2968, 253, '_elementor_global_class_usage_indexed', '1'),
(2969, 253, '_elementor_global_class_usage_indexed_preview', '1'),
(2970, 253, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2971, 253, '_wp_page_template', 'default'),
(2972, 253, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2973, 253, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2810, 242, '_wp_page_template', 'elementor_header_footer'),
(2811, 242, '_elementor_edit_mode', 'builder'),
(2812, 242, '_elementor_template_type', 'wp-page'),
(2813, 242, '_elementor_version', '4.1.4'),
(2814, 242, '_elementor_pro_version', '4.0.2'),
(2815, 242, '_elementor_global_class_usage_indexed', '1'),
(2816, 242, '_elementor_global_class_usage_indexed_preview', '1'),
(2817, 242, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2818, 242, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2820, 242, '_elementor_page_settings', 'a:0:{}'),
(2823, 243, '_wp_page_template', 'elementor_header_footer'),
(2824, 243, '_elementor_edit_mode', 'builder'),
(2825, 243, '_elementor_template_type', 'wp-page'),
(2826, 243, '_elementor_version', '4.1.4'),
(2827, 243, '_elementor_pro_version', '4.0.2'),
(2828, 243, '_elementor_global_class_usage_indexed', '1'),
(2829, 243, '_elementor_global_class_usage_indexed_preview', '1'),
(2830, 243, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2831, 243, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2833, 243, '_elementor_page_settings', 'a:0:{}'),
(3082, 261, '_elementor_page_settings', 'a:0:{}'),
(3083, 262, '_wp_page_template', 'elementor_header_footer'),
(3084, 262, '_elementor_edit_mode', 'builder'),
(3085, 262, '_elementor_template_type', 'wp-page'),
(3086, 262, '_elementor_version', '4.1.4'),
(3087, 262, '_elementor_pro_version', '4.0.2'),
(3088, 262, '_elementor_global_class_usage_indexed', '1'),
(3089, 262, '_elementor_global_class_usage_indexed_preview', '1'),
(3090, 262, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3091, 262, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fbb0bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4919de4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}]},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2877, 247, '_wp_page_template', 'elementor_header_footer'),
(2878, 247, '_elementor_edit_mode', 'builder'),
(2879, 247, '_elementor_template_type', 'wp-page'),
(2836, 244, '_wp_page_template', 'elementor_header_footer'),
(2837, 244, '_elementor_edit_mode', 'builder'),
(2838, 244, '_elementor_template_type', 'wp-page'),
(2839, 244, '_elementor_version', '4.1.4'),
(2840, 244, '_elementor_pro_version', '4.0.2'),
(2841, 244, '_elementor_global_class_usage_indexed', '1'),
(2842, 244, '_elementor_global_class_usage_indexed_preview', '1'),
(2843, 244, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2844, 244, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2912, 250, '_wp_page_template', 'elementor_header_footer'),
(2851, 245, '_wp_page_template', 'elementor_header_footer'),
(2852, 245, '_elementor_edit_mode', 'builder'),
(2853, 245, '_elementor_template_type', 'wp-page'),
(2854, 245, '_elementor_version', '4.1.4'),
(2855, 245, '_elementor_pro_version', '4.0.2'),
(2856, 245, '_elementor_global_class_usage_indexed', '1'),
(2857, 245, '_elementor_global_class_usage_indexed_preview', '1'),
(2858, 245, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2859, 245, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2861, 245, '_elementor_page_settings', 'a:0:{}'),
(2864, 246, '_wp_page_template', 'elementor_header_footer'),
(2865, 246, '_elementor_edit_mode', 'builder'),
(2866, 246, '_elementor_template_type', 'wp-page'),
(2867, 246, '_elementor_version', '4.1.4'),
(2868, 246, '_elementor_pro_version', '4.0.2'),
(2869, 246, '_elementor_global_class_usage_indexed', '1'),
(2870, 246, '_elementor_global_class_usage_indexed_preview', '1'),
(2871, 246, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2872, 246, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ee8ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"745e3cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8fe1f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to \",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nothing You Could Do\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"70d186f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6377877\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving <br><span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bd4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01dd673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d5028c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"abb56b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bill Pay Now\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/pay.xpress-pay.com\\/pt\\/15b452b08022421bb3b2f18c24b07f23\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a753623\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7f920ae\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"poster\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"aspect_ratio\":\"32\",\"pp_display_conditions\":[{\"_id\":\"92e39a0\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_overlay\":{\"id\":39,\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":false}]'),
(2874, 246, '_elementor_page_settings', 'a:0:{}'),
(6886, 559, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3056, 259, '_elementor_page_settings', 'a:0:{}'),
(2900, 248, '_elementor_page_settings', 'a:0:{}'),
(2901, 249, '_wp_page_template', 'elementor_header_footer'),
(2902, 249, '_elementor_edit_mode', 'builder'),
(2903, 249, '_elementor_template_type', 'wp-page'),
(2904, 249, '_elementor_version', '4.1.4'),
(2905, 249, '_elementor_pro_version', '4.0.2'),
(2906, 249, '_elementor_global_class_usage_indexed', '1'),
(2907, 249, '_elementor_global_class_usage_indexed_preview', '1'),
(2908, 249, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2909, 249, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(2911, 249, '_elementor_page_settings', 'a:0:{}'),
(2913, 250, '_elementor_edit_mode', 'builder'),
(2914, 250, '_elementor_template_type', 'wp-page'),
(2915, 250, '_elementor_version', '4.1.4'),
(2916, 250, '_elementor_pro_version', '4.0.2'),
(2917, 250, '_elementor_global_class_usage_indexed', '1'),
(2918, 250, '_elementor_global_class_usage_indexed_preview', '1'),
(2919, 250, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2920, 250, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[],\"isInner\":false}]'),
(2925, 251, '_elementor_edit_mode', 'builder'),
(2926, 251, '_elementor_template_type', 'kit'),
(2927, 251, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(2928, 251, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(2929, 251, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(2930, 251, '_elementor_global_classes_labels', 'a:0:{}'),
(2931, 251, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(2932, 251, '_wp_page_template', 'default'),
(2933, 251, '_elementor_page_settings', 'a:15:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Essie\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1250;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:6:{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:15:\"viewport_laptop\";i:5;s:19:\"viewport_widescreen\";}s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:16:\"site_description\";s:7:\"Welcome\";}'),
(2934, 251, '_elementor_data', '[]'),
(2935, 251, '_elementor_version', '4.1.4'),
(2936, 251, '_elementor_pro_version', '4.0.2'),
(2937, 251, '_elementor_global_class_usage_indexed', '1'),
(2938, 251, '_elementor_global_class_usage_indexed_preview', '1'),
(3456, 292, '_wp_attached_file', '2026/07/About-us-13-1.jpg'),
(3457, 292, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/About-us-13-1.jpg\";s:8:\"filesize\";i:80514;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"About-us-13-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"About-us-13-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:7132;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"About-us-13-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81962;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(3458, 293, '_wp_page_template', 'elementor_header_footer'),
(3459, 293, '_elementor_edit_mode', 'builder'),
(3460, 293, '_elementor_template_type', 'wp-page'),
(3461, 293, '_elementor_version', '4.1.4'),
(3462, 293, '_elementor_pro_version', '4.0.2'),
(3463, 293, '_elementor_global_class_usage_indexed', '1'),
(3464, 293, '_elementor_global_class_usage_indexed_preview', '1'),
(3465, 293, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3466, 293, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3468, 293, '_elementor_page_settings', 'a:0:{}'),
(3471, 294, '_wp_page_template', 'elementor_header_footer'),
(3472, 294, '_elementor_edit_mode', 'builder'),
(3473, 294, '_elementor_template_type', 'wp-page'),
(3474, 294, '_elementor_version', '4.1.4'),
(3475, 294, '_elementor_pro_version', '4.0.2'),
(3476, 294, '_elementor_global_class_usage_indexed', '1'),
(3477, 294, '_elementor_global_class_usage_indexed_preview', '1'),
(3478, 294, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3479, 294, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3481, 294, '_elementor_page_settings', 'a:0:{}'),
(3485, 295, '_elementor_edit_mode', 'builder'),
(3486, 295, '_elementor_template_type', 'wp-page'),
(3487, 295, '_elementor_version', '4.1.4'),
(3488, 295, '_elementor_pro_version', '4.0.2'),
(3489, 295, '_elementor_global_class_usage_indexed', '1'),
(3490, 295, '_elementor_global_class_usage_indexed_preview', '1'),
(3491, 295, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3492, 295, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3499, 296, '_wp_page_template', 'elementor_header_footer'),
(3500, 296, '_elementor_edit_mode', 'builder'),
(3501, 296, '_elementor_template_type', 'wp-page'),
(3502, 296, '_elementor_version', '4.1.4'),
(3503, 296, '_elementor_pro_version', '4.0.2'),
(3504, 296, '_elementor_global_class_usage_indexed', '1'),
(3505, 296, '_elementor_global_class_usage_indexed_preview', '1'),
(3506, 296, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3507, 296, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3509, 296, '_elementor_page_settings', 'a:0:{}'),
(3512, 297, '_wp_page_template', 'elementor_header_footer'),
(3513, 297, '_elementor_edit_mode', 'builder'),
(3514, 297, '_elementor_template_type', 'wp-page'),
(3515, 297, '_elementor_version', '4.1.4'),
(3516, 297, '_elementor_pro_version', '4.0.2'),
(3517, 297, '_elementor_global_class_usage_indexed', '1'),
(3518, 297, '_elementor_global_class_usage_indexed_preview', '1'),
(3519, 297, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3520, 297, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3522, 297, '_elementor_page_settings', 'a:0:{}'),
(3525, 298, '_wp_page_template', 'elementor_header_footer'),
(3526, 298, '_elementor_edit_mode', 'builder'),
(3527, 298, '_elementor_template_type', 'wp-page'),
(3528, 298, '_elementor_version', '4.1.4'),
(3529, 298, '_elementor_pro_version', '4.0.2'),
(3530, 298, '_elementor_global_class_usage_indexed', '1'),
(3531, 298, '_elementor_global_class_usage_indexed_preview', '1'),
(3532, 298, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3533, 298, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3548, 299, '_elementor_page_settings', 'a:0:{}'),
(3549, 300, '_wp_page_template', 'elementor_header_footer'),
(3550, 300, '_elementor_edit_mode', 'builder'),
(3551, 300, '_elementor_template_type', 'wp-page'),
(3552, 300, '_elementor_version', '4.1.4'),
(3553, 300, '_elementor_pro_version', '4.0.2'),
(3554, 300, '_elementor_global_class_usage_indexed', '1'),
(3555, 300, '_elementor_global_class_usage_indexed_preview', '1'),
(3556, 300, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3557, 300, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3559, 300, '_elementor_page_settings', 'a:0:{}'),
(3560, 301, '_wp_page_template', 'elementor_header_footer'),
(3561, 301, '_elementor_edit_mode', 'builder'),
(3562, 301, '_elementor_template_type', 'wp-page'),
(3563, 301, '_elementor_version', '4.1.4'),
(3564, 301, '_elementor_pro_version', '4.0.2'),
(3565, 301, '_elementor_global_class_usage_indexed', '1'),
(3566, 301, '_elementor_global_class_usage_indexed_preview', '1'),
(3567, 301, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3568, 301, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3599, 304, '_wp_page_template', 'elementor_header_footer'),
(3735, 314, '_wp_page_template', 'elementor_header_footer'),
(3736, 314, '_elementor_edit_mode', 'builder'),
(3737, 314, '_elementor_template_type', 'wp-page'),
(3738, 314, '_elementor_version', '4.1.4'),
(3739, 314, '_elementor_pro_version', '4.0.2'),
(3740, 314, '_elementor_global_class_usage_indexed', '1'),
(3741, 314, '_elementor_global_class_usage_indexed_preview', '1'),
(3742, 314, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3743, 314, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3573, 302, '_wp_page_template', 'elementor_header_footer'),
(3574, 302, '_elementor_edit_mode', 'builder'),
(3575, 302, '_elementor_template_type', 'wp-page'),
(3576, 302, '_elementor_version', '4.1.4'),
(3577, 302, '_elementor_pro_version', '4.0.2'),
(3578, 302, '_elementor_global_class_usage_indexed', '1'),
(3579, 302, '_elementor_global_class_usage_indexed_preview', '1'),
(3580, 302, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3581, 302, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3583, 302, '_elementor_page_settings', 'a:0:{}'),
(3586, 303, '_wp_page_template', 'elementor_header_footer'),
(3587, 303, '_elementor_edit_mode', 'builder'),
(3588, 303, '_elementor_template_type', 'wp-page'),
(3589, 303, '_elementor_version', '4.1.4'),
(3590, 303, '_elementor_pro_version', '4.0.2'),
(3591, 303, '_elementor_global_class_usage_indexed', '1'),
(3592, 303, '_elementor_global_class_usage_indexed_preview', '1'),
(3593, 303, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3594, 303, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3596, 303, '_elementor_page_settings', 'a:0:{}'),
(3600, 304, '_elementor_edit_mode', 'builder'),
(3601, 304, '_elementor_template_type', 'wp-page'),
(3602, 304, '_elementor_version', '4.1.4'),
(3603, 304, '_elementor_pro_version', '4.0.2'),
(3604, 304, '_elementor_global_class_usage_indexed', '1'),
(3605, 304, '_elementor_global_class_usage_indexed_preview', '1'),
(3606, 304, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3607, 304, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3681, 310, '_wp_page_template', 'elementor_header_footer'),
(3614, 305, '_wp_page_template', 'elementor_header_footer'),
(3615, 305, '_elementor_edit_mode', 'builder'),
(3616, 305, '_elementor_template_type', 'wp-page'),
(3617, 305, '_elementor_version', '4.1.4'),
(3618, 305, '_elementor_pro_version', '4.0.2'),
(3619, 305, '_elementor_global_class_usage_indexed', '1'),
(3620, 305, '_elementor_global_class_usage_indexed_preview', '1'),
(3621, 305, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3622, 305, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3624, 305, '_elementor_page_settings', 'a:0:{}'),
(3627, 306, '_wp_page_template', 'elementor_header_footer'),
(3628, 306, '_elementor_edit_mode', 'builder'),
(3629, 306, '_elementor_template_type', 'wp-page'),
(3630, 306, '_elementor_version', '4.1.4'),
(3631, 306, '_elementor_pro_version', '4.0.2'),
(3632, 306, '_elementor_global_class_usage_indexed', '1'),
(3633, 306, '_elementor_global_class_usage_indexed_preview', '1'),
(3634, 306, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3635, 306, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}]},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3637, 306, '_elementor_page_settings', 'a:0:{}'),
(3640, 307, '_wp_page_template', 'elementor_header_footer'),
(3641, 307, '_elementor_edit_mode', 'builder'),
(3642, 307, '_elementor_template_type', 'wp-page'),
(3643, 307, '_elementor_version', '4.1.4'),
(3644, 307, '_elementor_pro_version', '4.0.2'),
(3645, 307, '_elementor_global_class_usage_indexed', '1'),
(3646, 307, '_elementor_global_class_usage_indexed_preview', '1'),
(3647, 307, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3648, 307, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3655, 308, '_wp_page_template', 'elementor_header_footer'),
(3656, 308, '_elementor_edit_mode', 'builder'),
(3657, 308, '_elementor_template_type', 'wp-page'),
(3658, 308, '_elementor_version', '4.1.4'),
(3659, 308, '_elementor_pro_version', '4.0.2'),
(3660, 308, '_elementor_global_class_usage_indexed', '1'),
(3661, 308, '_elementor_global_class_usage_indexed_preview', '1'),
(3662, 308, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3663, 308, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3665, 308, '_elementor_page_settings', 'a:0:{}'),
(3668, 309, '_wp_page_template', 'elementor_header_footer'),
(3669, 309, '_elementor_edit_mode', 'builder'),
(3670, 309, '_elementor_template_type', 'wp-page'),
(3671, 309, '_elementor_version', '4.1.4'),
(3672, 309, '_elementor_pro_version', '4.0.2'),
(3673, 309, '_elementor_global_class_usage_indexed', '1'),
(3674, 309, '_elementor_global_class_usage_indexed_preview', '1'),
(3675, 309, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3676, 309, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3678, 309, '_elementor_page_settings', 'a:0:{}'),
(3682, 310, '_elementor_edit_mode', 'builder'),
(3683, 310, '_elementor_template_type', 'wp-page'),
(3684, 310, '_elementor_version', '4.1.4'),
(3685, 310, '_elementor_pro_version', '4.0.2'),
(3686, 310, '_elementor_global_class_usage_indexed', '1'),
(3687, 310, '_elementor_global_class_usage_indexed_preview', '1'),
(3688, 310, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3689, 310, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3696, 311, '_wp_page_template', 'elementor_header_footer'),
(3697, 311, '_elementor_edit_mode', 'builder'),
(3698, 311, '_elementor_template_type', 'wp-page'),
(3699, 311, '_elementor_version', '4.1.4'),
(3700, 311, '_elementor_pro_version', '4.0.2'),
(3701, 311, '_elementor_global_class_usage_indexed', '1'),
(3702, 311, '_elementor_global_class_usage_indexed_preview', '1'),
(3703, 311, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3704, 311, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3706, 311, '_elementor_page_settings', 'a:0:{}'),
(3709, 312, '_wp_page_template', 'elementor_header_footer'),
(3710, 312, '_elementor_edit_mode', 'builder'),
(3711, 312, '_elementor_template_type', 'wp-page'),
(3712, 312, '_elementor_version', '4.1.4'),
(3713, 312, '_elementor_pro_version', '4.0.2'),
(3714, 312, '_elementor_global_class_usage_indexed', '1'),
(3715, 312, '_elementor_global_class_usage_indexed_preview', '1'),
(3716, 312, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3717, 312, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3719, 312, '_elementor_page_settings', 'a:0:{}'),
(3722, 313, '_wp_page_template', 'elementor_header_footer'),
(3723, 313, '_elementor_edit_mode', 'builder'),
(3724, 313, '_elementor_template_type', 'wp-page'),
(3725, 313, '_elementor_version', '4.1.4'),
(3726, 313, '_elementor_pro_version', '4.0.2'),
(3727, 313, '_elementor_global_class_usage_indexed', '1'),
(3728, 313, '_elementor_global_class_usage_indexed_preview', '1'),
(3729, 313, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3730, 313, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3745, 314, '_elementor_page_settings', 'a:0:{}'),
(3746, 315, '_wp_page_template', 'elementor_header_footer'),
(3747, 315, '_elementor_edit_mode', 'builder'),
(3748, 315, '_elementor_template_type', 'wp-page'),
(3749, 315, '_elementor_version', '4.1.4'),
(3750, 315, '_elementor_pro_version', '4.0.2'),
(3751, 315, '_elementor_global_class_usage_indexed', '1'),
(3752, 315, '_elementor_global_class_usage_indexed_preview', '1'),
(3753, 315, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3754, 315, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3756, 315, '_elementor_page_settings', 'a:0:{}'),
(3757, 316, '_wp_page_template', 'elementor_header_footer'),
(3758, 316, '_elementor_edit_mode', 'builder'),
(3759, 316, '_elementor_template_type', 'wp-page'),
(3760, 316, '_elementor_version', '4.1.4'),
(3761, 316, '_elementor_pro_version', '4.0.2'),
(3762, 316, '_elementor_global_class_usage_indexed', '1'),
(3763, 316, '_elementor_global_class_usage_indexed_preview', '1'),
(3764, 316, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3765, 316, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3770, 317, '_wp_page_template', 'elementor_header_footer'),
(3771, 317, '_elementor_edit_mode', 'builder'),
(3772, 317, '_elementor_template_type', 'wp-page'),
(3773, 317, '_elementor_version', '4.1.4'),
(3774, 317, '_elementor_pro_version', '4.0.2'),
(3775, 317, '_elementor_global_class_usage_indexed', '1'),
(3776, 317, '_elementor_global_class_usage_indexed_preview', '1'),
(3777, 317, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3778, 317, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3780, 317, '_elementor_page_settings', 'a:0:{}'),
(3783, 318, '_wp_page_template', 'elementor_header_footer'),
(3784, 318, '_elementor_edit_mode', 'builder'),
(3785, 318, '_elementor_template_type', 'wp-page'),
(3786, 318, '_elementor_version', '4.1.4'),
(3787, 318, '_elementor_pro_version', '4.0.2'),
(3788, 318, '_elementor_global_class_usage_indexed', '1'),
(3789, 318, '_elementor_global_class_usage_indexed_preview', '1'),
(3790, 318, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3791, 318, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3793, 318, '_elementor_page_settings', 'a:0:{}'),
(3796, 319, '_wp_page_template', 'elementor_header_footer'),
(3797, 319, '_elementor_edit_mode', 'builder'),
(3798, 319, '_elementor_template_type', 'wp-page'),
(3799, 319, '_elementor_version', '4.1.4'),
(3800, 319, '_elementor_pro_version', '4.0.2'),
(3801, 319, '_elementor_global_class_usage_indexed', '1'),
(3802, 319, '_elementor_global_class_usage_indexed_preview', '1'),
(3803, 319, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3804, 319, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3811, 320, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155202.586.svg'),
(3812, 320, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4012;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3814, 321, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155202.586-1.svg'),
(3815, 321, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4012;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3817, 322, '_wp_page_template', 'elementor_header_footer'),
(3818, 322, '_elementor_edit_mode', 'builder'),
(3819, 322, '_elementor_template_type', 'wp-page'),
(3820, 322, '_elementor_version', '4.1.4'),
(3821, 322, '_elementor_pro_version', '4.0.2'),
(3822, 322, '_elementor_global_class_usage_indexed', '1'),
(3823, 322, '_elementor_global_class_usage_indexed_preview', '1'),
(3824, 322, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3825, 322, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3827, 322, '_elementor_page_settings', 'a:0:{}'),
(3830, 323, '_wp_page_template', 'elementor_header_footer'),
(3831, 323, '_elementor_edit_mode', 'builder'),
(3832, 323, '_elementor_template_type', 'wp-page'),
(3833, 323, '_elementor_version', '4.1.4'),
(3834, 323, '_elementor_pro_version', '4.0.2'),
(3835, 323, '_elementor_global_class_usage_indexed', '1'),
(3836, 323, '_elementor_global_class_usage_indexed_preview', '1'),
(3837, 323, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3838, 323, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3840, 323, '_elementor_page_settings', 'a:0:{}'),
(3843, 324, '_wp_page_template', 'elementor_header_footer'),
(3844, 324, '_elementor_edit_mode', 'builder'),
(3845, 324, '_elementor_template_type', 'wp-page'),
(3846, 324, '_elementor_version', '4.1.4'),
(3847, 324, '_elementor_pro_version', '4.0.2'),
(3848, 324, '_elementor_global_class_usage_indexed', '1'),
(3849, 324, '_elementor_global_class_usage_indexed_preview', '1'),
(3850, 324, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3851, 324, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3858, 325, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155448.410.svg'),
(3859, 325, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:7742;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3861, 326, '_wp_page_template', 'elementor_header_footer'),
(3862, 326, '_elementor_edit_mode', 'builder'),
(3863, 326, '_elementor_template_type', 'wp-page'),
(3864, 326, '_elementor_version', '4.1.4'),
(3865, 326, '_elementor_pro_version', '4.0.2'),
(3866, 326, '_elementor_global_class_usage_indexed', '1'),
(3867, 326, '_elementor_global_class_usage_indexed_preview', '1'),
(3868, 326, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3869, 326, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3871, 326, '_elementor_page_settings', 'a:0:{}'),
(3874, 327, '_wp_page_template', 'elementor_header_footer'),
(3875, 327, '_elementor_edit_mode', 'builder'),
(3876, 327, '_elementor_template_type', 'wp-page'),
(3877, 327, '_elementor_version', '4.1.4'),
(3878, 327, '_elementor_pro_version', '4.0.2'),
(3879, 327, '_elementor_global_class_usage_indexed', '1'),
(3880, 327, '_elementor_global_class_usage_indexed_preview', '1'),
(3881, 327, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3882, 327, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3884, 327, '_elementor_page_settings', 'a:0:{}'),
(3887, 328, '_wp_page_template', 'elementor_header_footer'),
(3888, 328, '_elementor_edit_mode', 'builder'),
(3889, 328, '_elementor_template_type', 'wp-page'),
(3890, 328, '_elementor_version', '4.1.4'),
(3891, 328, '_elementor_pro_version', '4.0.2'),
(3892, 328, '_elementor_global_class_usage_indexed', '1'),
(3893, 328, '_elementor_global_class_usage_indexed_preview', '1'),
(3894, 328, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3895, 328, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4182, 354, '_wp_page_template', 'elementor_header_footer'),
(4183, 354, '_elementor_edit_mode', 'builder'),
(4184, 354, '_elementor_template_type', 'wp-page'),
(4185, 354, '_elementor_version', '4.1.4'),
(4186, 354, '_elementor_pro_version', '4.0.2'),
(4187, 354, '_elementor_global_class_usage_indexed', '1'),
(4188, 354, '_elementor_global_class_usage_indexed_preview', '1'),
(4189, 354, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4190, 354, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3902, 329, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155603.378.svg'),
(3903, 329, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1710;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3905, 330, '_wp_page_template', 'elementor_header_footer'),
(3906, 330, '_elementor_edit_mode', 'builder'),
(3907, 330, '_elementor_template_type', 'wp-page'),
(3908, 330, '_elementor_version', '4.1.4'),
(3909, 330, '_elementor_pro_version', '4.0.2'),
(3910, 330, '_elementor_global_class_usage_indexed', '1'),
(3911, 330, '_elementor_global_class_usage_indexed_preview', '1'),
(3912, 330, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3913, 330, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3915, 330, '_elementor_page_settings', 'a:0:{}'),
(3918, 331, '_wp_page_template', 'elementor_header_footer'),
(3919, 331, '_elementor_edit_mode', 'builder'),
(3920, 331, '_elementor_template_type', 'wp-page'),
(3921, 331, '_elementor_version', '4.1.4'),
(3922, 331, '_elementor_pro_version', '4.0.2'),
(3923, 331, '_elementor_global_class_usage_indexed', '1'),
(3924, 331, '_elementor_global_class_usage_indexed_preview', '1'),
(3925, 331, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3926, 331, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3928, 331, '_elementor_page_settings', 'a:0:{}'),
(3931, 332, '_wp_page_template', 'elementor_header_footer'),
(3932, 332, '_elementor_edit_mode', 'builder'),
(3933, 332, '_elementor_template_type', 'wp-page'),
(3934, 332, '_elementor_version', '4.1.4'),
(3935, 332, '_elementor_pro_version', '4.0.2'),
(3936, 332, '_elementor_global_class_usage_indexed', '1'),
(3937, 332, '_elementor_global_class_usage_indexed_preview', '1'),
(3938, 332, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3939, 332, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3946, 333, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155718.081.svg'),
(3947, 333, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:13406;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3949, 334, '_wp_page_template', 'elementor_header_footer'),
(3950, 334, '_elementor_edit_mode', 'builder'),
(3951, 334, '_elementor_template_type', 'wp-page'),
(3952, 334, '_elementor_version', '4.1.4'),
(3953, 334, '_elementor_pro_version', '4.0.2'),
(3954, 334, '_elementor_global_class_usage_indexed', '1'),
(3955, 334, '_elementor_global_class_usage_indexed_preview', '1'),
(3956, 334, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3957, 334, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3959, 334, '_elementor_page_settings', 'a:0:{}'),
(3962, 335, '_wp_page_template', 'elementor_header_footer'),
(3963, 335, '_elementor_edit_mode', 'builder'),
(3964, 335, '_elementor_template_type', 'wp-page'),
(3965, 335, '_elementor_version', '4.1.4'),
(3966, 335, '_elementor_pro_version', '4.0.2'),
(3967, 335, '_elementor_global_class_usage_indexed', '1'),
(3968, 335, '_elementor_global_class_usage_indexed_preview', '1'),
(3969, 335, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3970, 335, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3972, 335, '_elementor_page_settings', 'a:0:{}'),
(3975, 336, '_wp_page_template', 'elementor_header_footer'),
(3976, 336, '_elementor_edit_mode', 'builder'),
(3977, 336, '_elementor_template_type', 'wp-page'),
(3978, 336, '_elementor_version', '4.1.4'),
(3979, 336, '_elementor_pro_version', '4.0.2'),
(3980, 336, '_elementor_global_class_usage_indexed', '1'),
(3981, 336, '_elementor_global_class_usage_indexed_preview', '1'),
(3982, 336, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3983, 336, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4101, 346, '_wp_page_template', 'elementor_header_footer'),
(4060, 343, '_wp_page_template', 'elementor_header_footer'),
(4075, 344, '_wp_page_template', 'elementor_header_footer'),
(3990, 337, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T155857.682.svg'),
(3991, 337, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2842;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3993, 338, '_wp_page_template', 'elementor_header_footer'),
(3994, 338, '_elementor_edit_mode', 'builder'),
(3995, 338, '_elementor_template_type', 'wp-page'),
(3996, 338, '_elementor_version', '4.1.4'),
(3997, 338, '_elementor_pro_version', '4.0.2'),
(3998, 338, '_elementor_global_class_usage_indexed', '1'),
(3999, 338, '_elementor_global_class_usage_indexed_preview', '1'),
(4000, 338, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4001, 338, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4003, 338, '_elementor_page_settings', 'a:0:{}'),
(4006, 339, '_wp_page_template', 'elementor_header_footer'),
(4007, 339, '_elementor_edit_mode', 'builder'),
(4008, 339, '_elementor_template_type', 'wp-page'),
(4009, 339, '_elementor_version', '4.1.4'),
(4010, 339, '_elementor_pro_version', '4.0.2'),
(4011, 339, '_elementor_global_class_usage_indexed', '1'),
(4012, 339, '_elementor_global_class_usage_indexed_preview', '1'),
(4013, 339, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4014, 339, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4016, 339, '_elementor_page_settings', 'a:0:{}'),
(4019, 340, '_wp_page_template', 'elementor_header_footer'),
(4020, 340, '_elementor_edit_mode', 'builder'),
(4021, 340, '_elementor_template_type', 'wp-page'),
(4022, 340, '_elementor_version', '4.1.4'),
(4023, 340, '_elementor_pro_version', '4.0.2'),
(4024, 340, '_elementor_global_class_usage_indexed', '1'),
(4025, 340, '_elementor_global_class_usage_indexed_preview', '1'),
(4026, 340, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4027, 340, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4168, 352, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T160700.576.svg'),
(4169, 352, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2823;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4034, 341, '_wp_page_template', 'elementor_header_footer'),
(4035, 341, '_elementor_edit_mode', 'builder'),
(4036, 341, '_elementor_template_type', 'wp-page'),
(4037, 341, '_elementor_version', '4.1.4'),
(4038, 341, '_elementor_pro_version', '4.0.2'),
(4039, 341, '_elementor_global_class_usage_indexed', '1'),
(4040, 341, '_elementor_global_class_usage_indexed_preview', '1'),
(4041, 341, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4042, 341, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4044, 341, '_elementor_page_settings', 'a:0:{}'),
(4047, 342, '_wp_page_template', 'elementor_header_footer'),
(4048, 342, '_elementor_edit_mode', 'builder'),
(4049, 342, '_elementor_template_type', 'wp-page'),
(4050, 342, '_elementor_version', '4.1.4'),
(4051, 342, '_elementor_pro_version', '4.0.2'),
(4052, 342, '_elementor_global_class_usage_indexed', '1'),
(4053, 342, '_elementor_global_class_usage_indexed_preview', '1'),
(4054, 342, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4055, 342, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ff7831\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4057, 342, '_elementor_page_settings', 'a:0:{}'),
(4061, 343, '_elementor_edit_mode', 'builder'),
(4062, 343, '_elementor_template_type', 'wp-page'),
(4063, 343, '_elementor_version', '4.1.4'),
(4064, 343, '_elementor_pro_version', '4.0.2'),
(4065, 343, '_elementor_global_class_usage_indexed', '1'),
(4066, 343, '_elementor_global_class_usage_indexed_preview', '1'),
(4067, 343, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4068, 343, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4076, 344, '_elementor_edit_mode', 'builder'),
(4077, 344, '_elementor_template_type', 'wp-page'),
(4078, 344, '_elementor_version', '4.1.4'),
(4079, 344, '_elementor_pro_version', '4.0.2'),
(4080, 344, '_elementor_global_class_usage_indexed', '1'),
(4081, 344, '_elementor_global_class_usage_indexed_preview', '1'),
(4082, 344, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4083, 344, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4085, 344, '_elementor_page_settings', 'a:0:{}'),
(4088, 345, '_wp_page_template', 'elementor_header_footer'),
(4089, 345, '_elementor_edit_mode', 'builder'),
(4090, 345, '_elementor_template_type', 'wp-page'),
(4091, 345, '_elementor_version', '4.1.4'),
(4092, 345, '_elementor_pro_version', '4.0.2'),
(4093, 345, '_elementor_global_class_usage_indexed', '1'),
(4094, 345, '_elementor_global_class_usage_indexed_preview', '1'),
(4095, 345, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4096, 345, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4098, 345, '_elementor_page_settings', 'a:0:{}'),
(4102, 346, '_elementor_edit_mode', 'builder'),
(4103, 346, '_elementor_template_type', 'wp-page'),
(4104, 346, '_elementor_version', '4.1.4'),
(4105, 346, '_elementor_pro_version', '4.0.2'),
(4106, 346, '_elementor_global_class_usage_indexed', '1'),
(4107, 346, '_elementor_global_class_usage_indexed_preview', '1'),
(4108, 346, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4109, 346, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4116, 347, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T160532.891.svg'),
(4117, 347, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1710;s:5:\"width\";i:512;s:6:\"height\";i:512;}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4164, 351, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4211, 356, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4212, 356, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4132, 349, '_wp_page_template', 'elementor_header_footer'),
(4133, 349, '_elementor_edit_mode', 'builder'),
(4134, 349, '_elementor_template_type', 'wp-page'),
(4135, 349, '_elementor_version', '4.1.4'),
(4136, 349, '_elementor_pro_version', '4.0.2'),
(4137, 349, '_elementor_global_class_usage_indexed', '1'),
(4138, 349, '_elementor_global_class_usage_indexed_preview', '1'),
(4139, 349, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4140, 349, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4142, 349, '_elementor_page_settings', 'a:0:{}'),
(4204, 356, '_wp_page_template', 'elementor_header_footer'),
(4205, 356, '_elementor_edit_mode', 'builder'),
(4206, 356, '_elementor_template_type', 'wp-page'),
(4207, 356, '_elementor_version', '4.1.4'),
(4208, 356, '_elementor_pro_version', '4.0.2'),
(4209, 356, '_elementor_global_class_usage_indexed', '1'),
(4210, 356, '_elementor_global_class_usage_indexed_preview', '1'),
(4156, 351, '_wp_page_template', 'elementor_header_footer'),
(4157, 351, '_elementor_edit_mode', 'builder'),
(4158, 351, '_elementor_template_type', 'wp-page'),
(4159, 351, '_elementor_version', '4.1.4'),
(4160, 351, '_elementor_pro_version', '4.0.2'),
(4161, 351, '_elementor_global_class_usage_indexed', '1'),
(4162, 351, '_elementor_global_class_usage_indexed_preview', '1'),
(4163, 351, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4144, 350, '_wp_page_template', 'elementor_header_footer'),
(4145, 350, '_elementor_edit_mode', 'builder'),
(4146, 350, '_elementor_template_type', 'wp-page'),
(4147, 350, '_elementor_version', '4.1.4'),
(4148, 350, '_elementor_pro_version', '4.0.2'),
(4149, 350, '_elementor_global_class_usage_indexed', '1'),
(4150, 350, '_elementor_global_class_usage_indexed_preview', '1'),
(4151, 350, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4152, 350, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4154, 350, '_elementor_page_settings', 'a:0:{}'),
(6903, 560, '_elementor_page_settings', 'a:0:{}'),
(6396, 529, '_elementor_edit_mode', 'builder'),
(6397, 529, '_elementor_template_type', 'wp-page'),
(6398, 529, '_elementor_version', '4.1.4'),
(6399, 529, '_elementor_pro_version', '4.1.2'),
(6400, 529, '_elementor_global_class_usage_indexed', '1'),
(6401, 529, '_elementor_global_class_usage_indexed_preview', '1'),
(6402, 529, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6403, 529, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4192, 354, '_elementor_page_settings', 'a:0:{}'),
(4193, 355, '_wp_page_template', 'elementor_header_footer'),
(4194, 355, '_elementor_edit_mode', 'builder'),
(4195, 355, '_elementor_template_type', 'wp-page'),
(4196, 355, '_elementor_version', '4.1.4'),
(4197, 355, '_elementor_pro_version', '4.0.2'),
(4198, 355, '_elementor_global_class_usage_indexed', '1'),
(4199, 355, '_elementor_global_class_usage_indexed_preview', '1'),
(4200, 355, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4201, 355, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4203, 355, '_elementor_page_settings', 'a:0:{}'),
(4338, 367, '_wp_page_template', 'elementor_header_footer'),
(4489, 385, '_elementor_edit_mode', 'builder'),
(4529, 388, '_wp_page_template', 'elementor_header_footer'),
(4747, 404, '_wp_page_template', 'elementor_header_footer'),
(4748, 404, '_elementor_edit_mode', 'builder'),
(4749, 404, '_elementor_template_type', 'wp-page'),
(4750, 404, '_elementor_version', '4.1.4'),
(4751, 404, '_elementor_pro_version', '4.0.2'),
(4752, 404, '_elementor_global_class_usage_indexed', '1'),
(4753, 404, '_elementor_global_class_usage_indexed_preview', '1'),
(4754, 404, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4755, 404, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4757, 404, '_elementor_page_settings', 'a:0:{}'),
(4758, 405, '_wp_page_template', 'elementor_header_footer'),
(4759, 405, '_elementor_edit_mode', 'builder'),
(4760, 405, '_elementor_template_type', 'wp-page'),
(4761, 405, '_elementor_version', '4.1.4'),
(4762, 405, '_elementor_pro_version', '4.0.2'),
(4763, 405, '_elementor_global_class_usage_indexed', '1'),
(4764, 405, '_elementor_global_class_usage_indexed_preview', '1'),
(4765, 405, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4766, 405, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4768, 405, '_elementor_page_settings', 'a:0:{}'),
(4769, 406, '_wp_page_template', 'elementor_header_footer'),
(4770, 406, '_elementor_edit_mode', 'builder'),
(4771, 406, '_elementor_template_type', 'wp-page'),
(4772, 406, '_elementor_version', '4.1.4'),
(4773, 406, '_elementor_pro_version', '4.0.2'),
(4774, 406, '_elementor_global_class_usage_indexed', '1'),
(4775, 406, '_elementor_global_class_usage_indexed_preview', '1'),
(4776, 406, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4777, 406, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4503, 386, '_wp_page_template', 'elementor_header_footer'),
(4504, 386, '_elementor_edit_mode', 'builder'),
(4505, 386, '_elementor_template_type', 'wp-page'),
(4506, 386, '_elementor_version', '4.1.4'),
(4507, 386, '_elementor_pro_version', '4.0.2'),
(4508, 386, '_elementor_global_class_usage_indexed', '1'),
(4509, 386, '_elementor_global_class_usage_indexed_preview', '1'),
(4510, 386, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4511, 386, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4450, 379, '_wp_attached_file', '2026/07/family-care_18394352.svg'),
(4451, 379, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:7308;s:5:\"width\";i:160;s:6:\"height\";i:160;}'),
(4453, 380, '_wp_attached_file', '2026/07/mechanic_3833691.svg'),
(4454, 380, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1627;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4394, 371, '_wp_attached_file', '2026/07/checkup_18753278.svg'),
(4395, 371, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3339;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4271, 362, '_wp_page_template', 'elementor_header_footer'),
(4272, 362, '_elementor_edit_mode', 'builder'),
(4273, 362, '_elementor_template_type', 'wp-page'),
(4274, 362, '_elementor_version', '4.1.4'),
(4275, 362, '_elementor_pro_version', '4.0.2'),
(4276, 362, '_elementor_global_class_usage_indexed', '1'),
(4277, 362, '_elementor_global_class_usage_indexed_preview', '1'),
(4278, 362, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4279, 362, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4265, 361, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4261, 361, '_elementor_pro_version', '4.0.2'),
(4262, 361, '_elementor_global_class_usage_indexed', '1'),
(4263, 361, '_elementor_global_class_usage_indexed_preview', '1'),
(4264, 361, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4257, 361, '_wp_page_template', 'elementor_header_footer'),
(4258, 361, '_elementor_edit_mode', 'builder'),
(4259, 361, '_elementor_template_type', 'wp-page'),
(4260, 361, '_elementor_version', '4.1.4'),
(4230, 358, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T160909.657.svg'),
(4231, 358, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3770;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4233, 359, '_wp_page_template', 'elementor_header_footer'),
(4234, 359, '_elementor_edit_mode', 'builder'),
(4235, 359, '_elementor_template_type', 'wp-page'),
(4236, 359, '_elementor_version', '4.1.4'),
(4237, 359, '_elementor_pro_version', '4.0.2'),
(4238, 359, '_elementor_global_class_usage_indexed', '1'),
(4239, 359, '_elementor_global_class_usage_indexed_preview', '1'),
(4240, 359, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4241, 359, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4243, 359, '_elementor_page_settings', 'a:0:{}'),
(4245, 360, '_wp_page_template', 'elementor_header_footer'),
(4246, 360, '_elementor_edit_mode', 'builder'),
(4247, 360, '_elementor_template_type', 'wp-page'),
(4248, 360, '_elementor_version', '4.1.4'),
(4249, 360, '_elementor_pro_version', '4.0.2'),
(4250, 360, '_elementor_global_class_usage_indexed', '1'),
(4251, 360, '_elementor_global_class_usage_indexed_preview', '1'),
(4252, 360, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4253, 360, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4255, 360, '_elementor_page_settings', 'a:0:{}'),
(4281, 362, '_elementor_page_settings', 'a:0:{}'),
(4284, 363, '_wp_page_template', 'elementor_header_footer'),
(4285, 363, '_elementor_edit_mode', 'builder'),
(4286, 363, '_elementor_template_type', 'wp-page'),
(4287, 363, '_elementor_version', '4.1.4'),
(4288, 363, '_elementor_pro_version', '4.0.2'),
(4289, 363, '_elementor_global_class_usage_indexed', '1'),
(4290, 363, '_elementor_global_class_usage_indexed_preview', '1'),
(4291, 363, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4292, 363, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4294, 363, '_elementor_page_settings', 'a:0:{}'),
(4488, 385, '_wp_page_template', 'elementor_header_footer'),
(4297, 364, '_wp_page_template', 'elementor_header_footer'),
(4298, 364, '_elementor_edit_mode', 'builder'),
(4299, 364, '_elementor_template_type', 'wp-page'),
(4300, 364, '_elementor_version', '4.1.4'),
(4301, 364, '_elementor_pro_version', '4.0.2'),
(4302, 364, '_elementor_global_class_usage_indexed', '1'),
(4303, 364, '_elementor_global_class_usage_indexed_preview', '1'),
(4304, 364, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4305, 364, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6906, 561, '_wp_page_template', 'elementor_header_footer'),
(6907, 561, '_elementor_edit_mode', 'builder'),
(6908, 561, '_elementor_template_type', 'wp-page'),
(6909, 561, '_elementor_version', '4.1.4'),
(6910, 561, '_elementor_pro_version', '4.1.2'),
(6911, 561, '_elementor_global_class_usage_indexed', '1'),
(6912, 561, '_elementor_global_class_usage_indexed_preview', '1'),
(6913, 561, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6914, 561, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4379, 370, '_wp_page_template', 'elementor_header_footer'),
(4312, 365, '_wp_page_template', 'elementor_header_footer'),
(4313, 365, '_elementor_edit_mode', 'builder'),
(4314, 365, '_elementor_template_type', 'wp-page'),
(4315, 365, '_elementor_version', '4.1.4'),
(4316, 365, '_elementor_pro_version', '4.0.2'),
(4317, 365, '_elementor_global_class_usage_indexed', '1'),
(4318, 365, '_elementor_global_class_usage_indexed_preview', '1'),
(4319, 365, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4320, 365, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4322, 365, '_elementor_page_settings', 'a:0:{}'),
(4325, 366, '_wp_page_template', 'elementor_header_footer'),
(4326, 366, '_elementor_edit_mode', 'builder'),
(4327, 366, '_elementor_template_type', 'wp-page'),
(4328, 366, '_elementor_version', '4.1.4'),
(4329, 366, '_elementor_pro_version', '4.0.2'),
(4330, 366, '_elementor_global_class_usage_indexed', '1'),
(4331, 366, '_elementor_global_class_usage_indexed_preview', '1'),
(4332, 366, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4333, 366, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4335, 366, '_elementor_page_settings', 'a:0:{}'),
(4339, 367, '_elementor_edit_mode', 'builder'),
(4340, 367, '_elementor_template_type', 'wp-page'),
(4341, 367, '_elementor_version', '4.1.4'),
(4342, 367, '_elementor_pro_version', '4.0.2'),
(4343, 367, '_elementor_global_class_usage_indexed', '1'),
(4344, 367, '_elementor_global_class_usage_indexed_preview', '1'),
(4345, 367, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4346, 367, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6916, 561, '_elementor_page_settings', 'a:0:{}'),
(6920, 562, '_elementor_edit_mode', 'builder'),
(6921, 562, '_elementor_template_type', 'wp-page'),
(6922, 562, '_elementor_version', '4.1.4'),
(6923, 562, '_elementor_pro_version', '4.1.2'),
(6924, 562, '_elementor_global_class_usage_indexed', '1'),
(6925, 562, '_elementor_global_class_usage_indexed_preview', '1'),
(6926, 562, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6927, 562, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4435, 378, '_wp_page_template', 'elementor_header_footer'),
(4353, 368, '_wp_page_template', 'elementor_header_footer'),
(4354, 368, '_elementor_edit_mode', 'builder'),
(4355, 368, '_elementor_template_type', 'wp-page'),
(4356, 368, '_elementor_version', '4.1.4'),
(4357, 368, '_elementor_pro_version', '4.0.2'),
(4358, 368, '_elementor_global_class_usage_indexed', '1'),
(4359, 368, '_elementor_global_class_usage_indexed_preview', '1'),
(4360, 368, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4361, 368, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4363, 368, '_elementor_page_settings', 'a:0:{}'),
(4366, 369, '_wp_page_template', 'elementor_header_footer'),
(4367, 369, '_elementor_edit_mode', 'builder'),
(4368, 369, '_elementor_template_type', 'wp-page'),
(4369, 369, '_elementor_version', '4.1.4'),
(4370, 369, '_elementor_pro_version', '4.0.2'),
(4371, 369, '_elementor_global_class_usage_indexed', '1'),
(4372, 369, '_elementor_global_class_usage_indexed_preview', '1'),
(4373, 369, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4374, 369, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155857.682.svg\",\"id\":337},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4376, 369, '_elementor_page_settings', 'a:0:{}'),
(7601, 613, '_elementor_edit_mode', 'builder'),
(7602, 613, '_elementor_template_type', 'wp-page'),
(7603, 613, '_elementor_version', '4.1.4'),
(7604, 613, '_elementor_pro_version', '4.1.2'),
(7605, 613, '_elementor_global_class_usage_indexed', '1'),
(7606, 613, '_elementor_global_class_usage_indexed_preview', '1'),
(7607, 613, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7608, 613, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D81C\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4380, 370, '_elementor_edit_mode', 'builder'),
(4381, 370, '_elementor_template_type', 'wp-page'),
(4382, 370, '_elementor_version', '4.1.4'),
(4383, 370, '_elementor_pro_version', '4.0.2'),
(4384, 370, '_elementor_global_class_usage_indexed', '1'),
(4385, 370, '_elementor_global_class_usage_indexed_preview', '1'),
(4386, 370, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4387, 370, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4397, 372, '_wp_attached_file', '2026/07/dusting_4871604.svg'),
(4398, 372, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5489;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4400, 373, '_wp_attached_file', '2026/07/grocery-bag_3731113.svg'),
(4401, 373, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1716;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4403, 374, '_wp_attached_file', '2026/07/menu_8708154.svg'),
(4404, 374, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4471;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4406, 375, '_wp_attached_file', '2026/07/relationship_16034829.svg'),
(4407, 375, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3481;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4409, 376, '_wp_page_template', 'elementor_header_footer'),
(4410, 376, '_elementor_edit_mode', 'builder'),
(4411, 376, '_elementor_template_type', 'wp-page'),
(4412, 376, '_elementor_version', '4.1.4'),
(4413, 376, '_elementor_pro_version', '4.0.2'),
(4414, 376, '_elementor_global_class_usage_indexed', '1'),
(4415, 376, '_elementor_global_class_usage_indexed_preview', '1'),
(4416, 376, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4417, 376, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4419, 376, '_elementor_page_settings', 'a:0:{}'),
(7597, 612, '_elementor_page_settings', 'a:0:{}'),
(4422, 377, '_wp_page_template', 'elementor_header_footer'),
(4423, 377, '_elementor_edit_mode', 'builder'),
(4424, 377, '_elementor_template_type', 'wp-page'),
(4425, 377, '_elementor_version', '4.1.4'),
(4426, 377, '_elementor_pro_version', '4.0.2'),
(4427, 377, '_elementor_global_class_usage_indexed', '1'),
(4428, 377, '_elementor_global_class_usage_indexed_preview', '1'),
(4429, 377, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4430, 377, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155202.586.svg\",\"id\":320},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155448.410.svg\",\"id\":325},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4432, 377, '_elementor_page_settings', 'a:0:{}'),
(7587, 612, '_wp_page_template', 'elementor_header_footer'),
(7588, 612, '_elementor_edit_mode', 'builder'),
(7589, 612, '_elementor_template_type', 'wp-page'),
(7590, 612, '_elementor_version', '4.1.4'),
(7591, 612, '_elementor_pro_version', '4.1.2'),
(7592, 612, '_elementor_global_class_usage_indexed', '1'),
(7593, 612, '_elementor_global_class_usage_indexed_preview', '1'),
(7594, 612, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7595, 612, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D81C\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4436, 378, '_elementor_edit_mode', 'builder'),
(4437, 378, '_elementor_template_type', 'wp-page'),
(4438, 378, '_elementor_version', '4.1.4'),
(4439, 378, '_elementor_pro_version', '4.0.2'),
(4440, 378, '_elementor_global_class_usage_indexed', '1'),
(4441, 378, '_elementor_global_class_usage_indexed_preview', '1'),
(4442, 378, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4443, 378, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7017, 569, '_wp_page_template', 'elementor_header_footer'),
(6935, 563, '_elementor_template_type', 'header'),
(6936, 563, '_elementor_version', '4.1.4'),
(6937, 563, '_elementor_pro_version', '4.1.2'),
(6938, 563, '_elementor_global_class_usage_indexed', '1'),
(6939, 563, '_elementor_global_class_usage_indexed_preview', '1'),
(6940, 563, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6941, 563, '_wp_page_template', 'default'),
(6942, 563, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"},\"z_index\":9},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6943, 563, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7132, 578, '_elementor_edit_mode', 'builder'),
(6950, 564, '_wp_page_template', 'elementor_header_footer'),
(6951, 564, '_elementor_edit_mode', 'builder'),
(6952, 564, '_elementor_template_type', 'wp-page'),
(6953, 564, '_elementor_version', '4.1.4'),
(6954, 564, '_elementor_pro_version', '4.1.2'),
(6955, 564, '_elementor_global_class_usage_indexed', '1'),
(6956, 564, '_elementor_global_class_usage_indexed_preview', '1'),
(6957, 564, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6958, 564, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4456, 381, '_wp_attached_file', '2026/07/time_15833691.svg'),
(4457, 381, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3959;s:5:\"width\";i:138;s:6:\"height\";i:138;}'),
(6392, 528, '_elementor_page_settings', 'a:0:{}'),
(4459, 382, '_wp_attached_file', '2026/07/towel_18074430.svg'),
(4460, 382, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5429;s:5:\"width\";i:66;s:6:\"height\";i:66;}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7631, 379, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>'),
(4462, 383, '_wp_page_template', 'elementor_header_footer'),
(4463, 383, '_elementor_edit_mode', 'builder'),
(4464, 383, '_elementor_template_type', 'wp-page'),
(4465, 383, '_elementor_version', '4.1.4'),
(4466, 383, '_elementor_pro_version', '4.0.2'),
(4467, 383, '_elementor_global_class_usage_indexed', '1'),
(4468, 383, '_elementor_global_class_usage_indexed_preview', '1'),
(4469, 383, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4470, 383, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4472, 383, '_elementor_page_settings', 'a:0:{}'),
(7584, 611, '_elementor_page_settings', 'a:0:{}'),
(4475, 384, '_wp_page_template', 'elementor_header_footer'),
(4476, 384, '_elementor_edit_mode', 'builder'),
(4477, 384, '_elementor_template_type', 'wp-page'),
(4478, 384, '_elementor_version', '4.1.4'),
(4479, 384, '_elementor_pro_version', '4.0.2'),
(4480, 384, '_elementor_global_class_usage_indexed', '1'),
(4481, 384, '_elementor_global_class_usage_indexed_preview', '1'),
(4482, 384, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4483, 384, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160532.891.svg\",\"id\":347},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160700.576.svg\",\"id\":352},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T160909.657.svg\",\"id\":358},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155718.081.svg\",\"id\":333},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4485, 384, '_elementor_page_settings', 'a:0:{}'),
(7612, 10, '_elementor_page_settings', 'a:0:{}'),
(7574, 611, '_wp_page_template', 'elementor_header_footer'),
(7575, 611, '_elementor_edit_mode', 'builder'),
(7576, 611, '_elementor_template_type', 'wp-page'),
(7577, 611, '_elementor_version', '4.1.4'),
(7578, 611, '_elementor_pro_version', '4.1.2'),
(7579, 611, '_elementor_global_class_usage_indexed', '1'),
(7580, 611, '_elementor_global_class_usage_indexed_preview', '1'),
(7581, 611, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7582, 611, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D81C\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4490, 385, '_elementor_template_type', 'wp-page'),
(4491, 385, '_elementor_version', '4.1.4'),
(4492, 385, '_elementor_pro_version', '4.0.2'),
(4493, 385, '_elementor_global_class_usage_indexed', '1'),
(4494, 385, '_elementor_global_class_usage_indexed_preview', '1'),
(4495, 385, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4496, 385, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6960, 564, '_elementor_page_settings', 'a:0:{}'),
(4513, 386, '_elementor_page_settings', 'a:0:{}'),
(7632, 380, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>'),
(7633, 382, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>'),
(7634, 413, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\" class=\"\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>'),
(7635, 329, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\" class=\"\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7636, 10, '_elementor_element_cache', '{\"timeout\":1784062184,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-15561fb9 hero-section e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"15561fb9\\\" 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-18f63f96 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"18f63f96\\\" 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-b702a0c elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline\\\" data-id=\\\"b702a0c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;marker&quot;:&quot;underline&quot;,&quot;highlighted_text&quot;:&quot;Welcome to &quot;,&quot;headline_style&quot;:&quot;highlight&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;highlight_animation_duration&quot;:1200,&quot;highlight_iteration_delay&quot;:8000}\\\" data-widget_type=\\\"animated-headline.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<h3 class=\\\"elementor-headline\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-text elementor-headline-text-active\\\">Welcome to <\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5946b94 elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-heading\\\" data-id=\\\"5946b94\\\" 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\\\"> Essie\'s Loving <span style=\\\"color:#FECE00\\\">Touch<\\/span><\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8a5cc29 elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-heading\\\" data-id=\\\"8a5cc29\\\" 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\\\">Making Every Touch Loving<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6ImZmNzljNTAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJBdCBFc3NpZSdzIExvdmluZyBUb3VjaCwgd2UgYXJlIGRlZGljYXRlZCB0byBwcm92aWRpbmcgY29tcGFzc2lvbmF0ZSwgZGVwZW5kYWJsZSwgYW5kIHBlcnNvbmFsaXplZCBIb21lIENvbXBhbmlvbiBTZXJ2aWNlcyB0aHJvdWdob3V0IHRoZSBTdGF0ZSBvZiBUZXhhcy4iLCJfZWxlbWVudF9jdXN0b21fd2lkdGgiOnsidW5pdCI6IiUiLCJzaXplIjo3MCwic2l6ZXMiOltdfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIwMjFlYjExIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]<div class=\\\"elementor-element elementor-element-403ccfe6 e-con-full e-flex e-con e-child\\\" data-id=\\\"403ccfe6\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7da6ceeb elementor-align-justify elementor-widget__width-initial elementor-widget elementor-widget-button\\\" data-id=\\\"7da6ceeb\\\" 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=\\\"#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\\\">Our Services<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-75b59018 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"75b59018\\\" 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-a62eaea e-con-full e-flex e-con e-child\\\" data-id=\\\"a62eaea\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-203d1b8 image_style elementor-widget elementor-widget-image\\\" data-id=\\\"203d1b8\\\" 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=\\\"991\\\" height=\\\"1619\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\\\" class=\\\"attachment-full size-full wp-image-132\\\" alt=\\\"\\\" \\/>\\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-d218ec2 e-con-full e-flex e-con e-child\\\" data-id=\\\"d218ec2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1c3d041 image_style elementor-widget elementor-widget-image\\\" data-id=\\\"1c3d041\\\" 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=\\\"971\\\" height=\\\"1619\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\\\" class=\\\"attachment-full size-full wp-image-86\\\" alt=\\\"\\\" \\/>\\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-d9f460b hero-section elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"d9f460b\\\" 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-0e03676 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"0e03676\\\" 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-b5ba7c8 elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline\\\" data-id=\\\"b5ba7c8\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;marker&quot;:&quot;underline&quot;,&quot;highlighted_text&quot;:&quot;Welcome to &quot;,&quot;headline_style&quot;:&quot;highlight&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;highlight_animation_duration&quot;:1200,&quot;highlight_iteration_delay&quot;:8000}\\\" data-widget_type=\\\"animated-headline.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<h3 class=\\\"elementor-headline\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-text elementor-headline-text-active\\\">Welcome to <\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-72525ed elementor-widget elementor-widget-heading\\\" data-id=\\\"72525ed\\\" 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\\\"> Essie\'s Loving <span style=\\\"color:#FECE00\\\">Touch<\\/span><\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7eb5468 elementor-widget elementor-widget-heading\\\" data-id=\\\"7eb5468\\\" 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\\\">Making Every Touch Loving<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6IjliZDE2YzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJBdCBFc3NpZSdzIExvdmluZyBUb3VjaCwgd2UgYXJlIGRlZGljYXRlZCB0byBwcm92aWRpbmcgY29tcGFzc2lvbmF0ZSwgZGVwZW5kYWJsZSwgYW5kIHBlcnNvbmFsaXplZCBIb21lIENvbXBhbmlvbiBTZXJ2aWNlcyB0aHJvdWdob3V0IHRoZSBTdGF0ZSBvZiBUZXhhcy4iLCJfZWxlbWVudF9jdXN0b21fd2lkdGgiOnsidW5pdCI6IiUiLCJzaXplIjo3MCwic2l6ZXMiOltdfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIwMjFlYjExIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]<div class=\\\"elementor-element elementor-element-62da752 e-con-full e-flex e-con e-child\\\" data-id=\\\"62da752\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7601a66 elementor-align-justify elementor-widget__width-initial elementor-widget elementor-widget-button\\\" data-id=\\\"7601a66\\\" 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=\\\"#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\\\">Our Services<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8ccbb2a e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8ccbb2a\\\" 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-cac20ab e-con-full e-flex e-con e-child\\\" data-id=\\\"cac20ab\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d3ccc43 image_style elementor-widget elementor-widget-image\\\" data-id=\\\"d3ccc43\\\" 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=\\\"991\\\" height=\\\"1619\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\\\" class=\\\"attachment-full size-full wp-image-132\\\" alt=\\\"\\\" \\/>\\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-aaf7641 e-con-full elementor-hidden-mobile elementor-hidden-mobile_extra e-flex e-con e-child\\\" data-id=\\\"aaf7641\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7875fce image_style elementor-widget elementor-widget-image\\\" data-id=\\\"7875fce\\\" 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=\\\"971\\\" height=\\\"1619\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\\\" class=\\\"attachment-full size-full wp-image-86\\\" alt=\\\"\\\" \\/>\\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-620f1eb e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"620f1eb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" id=\\\"about\\\" 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-94cfabd e-con-full e-flex e-con e-child\\\" data-id=\\\"94cfabd\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-6e3d303 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"6e3d303\\\" 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-26090c3 elementor-widget elementor-widget-image\\\" data-id=\\\"26090c3\\\" 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\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\\\" class=\\\"attachment-full size-full wp-image-292\\\" alt=\\\"\\\" \\/>\\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-d79b908 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"d79b908\\\" 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-95dd8bc elementor-widget elementor-widget-heading\\\" data-id=\\\"95dd8bc\\\" 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\\\">About Us<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6fdd83f elementor-widget elementor-widget-heading\\\" data-id=\\\"6fdd83f\\\" 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\\\">Independence, Dignity &amp;  <span style=\\\"color:#FECE00\\\">Comfort<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6ImNjNzJlMTgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5BdCBFc3NpZSdzIExvdmluZyBUb3VjaCwgd2UgYXJlIGRlZGljYXRlZCB0byBwcm92aWRpbmcgY29tcGFzc2lvbmF0ZSwgZGVwZW5kYWJsZSwgYW5kIHBlcnNvbmFsaXplZCBIb21lIENvbXBhbmlvbiBTZXJ2aWNlcyB0aHJvdWdob3V0IHRoZSBTdGF0ZSBvZiBUZXhhcy4gT3VyIG1pc3Npb24gaXMgdG8gaGVscCBzZW5pb3JzIGFuZCBhZHVsdHMgbWFpbnRhaW4gdGhlaXIgaW5kZXBlbmRlbmNlLCBkaWduaXR5LCBhbmQgY29tZm9ydCB3aGlsZSByZW1haW5pbmcgc2FmZWx5IGluIHRoZSBwbGFjZSB0aGV5IGNhbGwgaG9tZS48YnIgXC8+PGJyIFwvPldlIHVuZGVyc3RhbmQgdGhhdCBldmVyeSBpbmRpdmlkdWFsIGhhcyB1bmlxdWUgbmVlZHMuIFRoYXQncyB3aHkgd2UgcHJvdmlkZSBwZXJzb25hbGl6ZWQsIG5vbi1tZWRpY2FsIHN1cHBvcnQgZGVzaWduZWQgdG8gZW5oYW5jZSBkYWlseSBsaXZpbmcgYW5kIGdpdmUgZmFtaWxpZXMgcGVhY2Ugb2YgbWluZC4gT3VyIGNhcmluZyBhbmQgcHJvZmVzc2lvbmFsIGNvbXBhbmlvbnMgYXJlIGNvbW1pdHRlZCB0byB0cmVhdGluZyBldmVyeSBjbGllbnQgd2l0aCByZXNwZWN0LCBraW5kbmVzcywgYW5kIGNvbXBhc3Npb24uPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImUxYjQ3ZDUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]<div class=\\\"elementor-element elementor-element-0146c63 e-con-full elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con e-child\\\" data-id=\\\"0146c63\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-e7ce81d e-con-full e-flex e-con e-child\\\" data-id=\\\"e7ce81d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6c6a0c1 elementor-widget elementor-widget-image\\\" data-id=\\\"6c6a0c1\\\" 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=\\\"1024\\\" height=\\\"602\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17-1024x602.jpeg\\\" class=\\\"attachment-large size-large wp-image-268\\\" alt=\\\"\\\" \\/>\\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-9e2f26a e-con-full e-flex e-con e-child\\\" data-id=\\\"9e2f26a\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-12c79c1 elementor-widget elementor-widget-image\\\" data-id=\\\"12c79c1\\\" 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=\\\"1500\\\" height=\\\"882\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\\\" class=\\\"attachment-full size-full wp-image-270\\\" alt=\\\"\\\" \\/>\\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<\\/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-2b21dff elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"2b21dff\\\" 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-31c6207 e-con-full e-flex e-con e-child\\\" data-id=\\\"31c6207\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-14e33e2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"14e33e2\\\" 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-212ba63 elementor-widget elementor-widget-image\\\" data-id=\\\"212ba63\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"668\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\\\" class=\\\"attachment-full size-full wp-image-264\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6ImUxMDhiMGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSB1bmRlcnN0YW5kIHRoYXQgZXZlcnkgaW5kaXZpZHVhbCBoYXMgdW5pcXVlIG5lZWRzLiBUaGF0J3Mgd2h5IHdlIHByb3ZpZGUgcGVyc29uYWxpemVkLCBub24tbWVkaWNhbCBzdXBwb3J0IGRlc2lnbmVkIHRvIGVuaGFuY2UgZGFpbHkgbGl2aW5nIGFuZCBnaXZlIGZhbWlsaWVzIHBlYWNlIG9mIG1pbmQuIE91ciBjYXJpbmcgYW5kIHByb2Zlc3Npb25hbCBjb21wYW5pb25zIGFyZSBjb21taXR0ZWQgdG8gdHJlYXRpbmcgZXZlcnkgY2xpZW50IHdpdGggcmVzcGVjdCwga2luZG5lc3MsIGFuZCBjb21wYXNzaW9uLiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMDM4MGZmYiJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-55d00c6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"55d00c6\\\" 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-eb4d294 elementor-widget elementor-widget-heading\\\" data-id=\\\"eb4d294\\\" 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\\\">About Us<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-32c12b4 elementor-widget elementor-widget-heading\\\" data-id=\\\"32c12b4\\\" 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\\\"> Helping You Maintain Independence, <span style=\\\"color:#FECE00\\\">Dignity &amp; Comfort<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6IjEwZGEzZTkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJBdCBFc3NpZSdzIExvdmluZyBUb3VjaCwgd2UgYXJlIGRlZGljYXRlZCB0byBwcm92aWRpbmcgY29tcGFzc2lvbmF0ZSwgZGVwZW5kYWJsZSwgYW5kIHBlcnNvbmFsaXplZCBIb21lIENvbXBhbmlvbiBTZXJ2aWNlcyB0aHJvdWdob3V0IHRoZSBTdGF0ZSBvZiBUZXhhcy4gT3VyIG1pc3Npb24gaXMgdG8gaGVscCBzZW5pb3JzIGFuZCBhZHVsdHMgbWFpbnRhaW4gdGhlaXIgaW5kZXBlbmRlbmNlLCBkaWduaXR5LCBhbmQgY29tZm9ydCB3aGlsZSByZW1haW5pbmcgc2FmZWx5IGluIHRoZSBwbGFjZSB0aGV5IGNhbGwgaG9tZS4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImUxYjQ3ZDUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]<div class=\\\"elementor-element elementor-element-a9d5251 e-con-full e-flex e-con e-child\\\" data-id=\\\"a9d5251\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-9c3f1e2 e-con-full e-flex e-con e-child\\\" data-id=\\\"9c3f1e2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-865e8ce elementor-widget elementor-widget-image\\\" data-id=\\\"865e8ce\\\" 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=\\\"1024\\\" height=\\\"602\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17-1024x602.jpeg\\\" class=\\\"attachment-large size-large wp-image-268\\\" alt=\\\"\\\" \\/>\\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-2e00039 e-con-full e-flex e-con e-child\\\" data-id=\\\"2e00039\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-741ed8a elementor-widget elementor-widget-image\\\" data-id=\\\"741ed8a\\\" 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=\\\"1500\\\" height=\\\"882\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\\\" class=\\\"attachment-full size-full wp-image-270\\\" alt=\\\"\\\" \\/>\\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<\\/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-5dfd9e6 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5dfd9e6\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" id=\\\"services\\\" 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-936f6d4 e-con-full e-flex e-con e-child\\\" data-id=\\\"936f6d4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1fa647f animated-slow elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"1fa647f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\"> Our  <span style=\\\"color:#FECE00\\\">Services<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6IjAyYjA4OGYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSBwcm91ZGx5IG9mZmVyIGEgdmFyaWV0eSBvZiBub24tbWVkaWNhbCBob21lIGNvbXBhbmlvbiBzZXJ2aWNlcywgaW5jbHVkaW5nOiIsImFsaWduIjoiY2VudGVyIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MzUsInNpemVzIjpbXX0sIl9mbGV4X2FsaWduX3NlbGYiOiJjZW50ZXIiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjY4ODYxZWUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9hbmltYXRpb24iOiJmYWRlSW5VcCIsImFuaW1hdGlvbl9kdXJhdGlvbiI6InNsb3cifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-7650a0e elementor-grid-tablet_extra-4 animated-slow elementor-grid-mobile_extra-1 elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 pp-info-box-above-title elementor-invisible elementor-widget elementor-widget-pp-info-box-carousel\\\" data-id=\\\"7650a0e\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"pp-info-box-carousel.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-container elementor-grid\\\">\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 64 64\\\" width=\\\"512\\\"><g id=\\\"Icons\\\"><g fill=\\\"rgb(0,0,0)\\\"><path d=\\\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\\\"><\\/path><path d=\\\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\\\"><\\/path><path d=\\\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\\\"><\\/path><path d=\\\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\\\"><\\/path><path d=\\\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\\\"><\\/path><path d=\\\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\\\"><\\/path><path d=\\\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\\\"><\\/path><path d=\\\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\\\"><\\/path><path d=\\\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\\\"><\\/path><path d=\\\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\\\"><\\/path><path d=\\\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\\\"><\\/path><path d=\\\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\\\"><\\/path><path d=\\\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\\\"><\\/path><path d=\\\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\\\"><\\/path><path d=\\\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\\\"><\\/path><path d=\\\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\\\"><\\/path><path d=\\\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\\\"><\\/path><path d=\\\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\\\"><\\/path><path d=\\\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\\\"><\\/path><path d=\\\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\\\"><\\/path><path d=\\\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\\\"><\\/path><path d=\\\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\\\"><\\/path><path d=\\\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\\\"><\\/path><\\/g><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tMeal preparation\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 74 74\\\" width=\\\"512\\\"><g><path d=\\\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\\\"><\\/path><path d=\\\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\\\"><\\/path><path d=\\\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\\\"><\\/path><path d=\\\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\\\"><\\/path><path d=\\\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\\\"><\\/path><path d=\\\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\\\"><\\/path><path d=\\\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\\\"><\\/path><path d=\\\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\\\"><\\/path><path d=\\\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\\\"><\\/path><path d=\\\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\\\"><\\/path><path d=\\\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tLight housekeeping and cleaning\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"outline\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" height=\\\"512\\\"><path d=\\\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\\\"><\\/path><path d=\\\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tGrocery shopping and errands\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\"><path d=\\\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tMedication reminders\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\"><path d=\\\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tCompanionship and social engagement\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 138 138\\\"><g><path d=\\\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\\\"><\\/path><path d=\\\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\\\"><\\/path><path d=\\\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\\\"><\\/path><path d=\\\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\\\"><\\/path><path d=\\\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><path d=\\\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tTransportation to appointments\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"&#x421;&#x43B;&#x43E;&#x439;_1\\\" viewBox=\\\"0 0 160 160\\\"><g fill=\\\"rgb(0,0,0)\\\"><path d=\\\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\\\"><\\/path><path d=\\\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\\\"><\\/path><path d=\\\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tRespite care for family caregivers\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 48 48\\\" width=\\\"512\\\"><g><path d=\\\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\\\"><\\/path><path d=\\\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\\\"><\\/path><path d=\\\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\\\"><\\/path><path d=\\\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tAdditional personalized services based on individual needs\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 66 66\\\"><g><path d=\\\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\\\"><\\/path><path d=\\\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\\\"><\\/path><path d=\\\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\\\"><\\/path><path d=\\\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\\\"><\\/path><path d=\\\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\\\"><\\/path><path d=\\\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\\\"><\\/path><path d=\\\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\\\"><\\/path><path d=\\\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tPersonal hygiene assistance, including bathing and dressing\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\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-5be4ec8 paymeny_section e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5be4ec8\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" id=\\\"paymeny\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-fca43aa e-con-full e-flex e-con e-child\\\" data-id=\\\"fca43aa\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-57d2e7a e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"57d2e7a\\\" 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-6776e20 elementor-widget elementor-widget-heading\\\" data-id=\\\"6776e20\\\" 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\\\">Payment Options<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3615bc8 elementor-widget elementor-widget-heading\\\" data-id=\\\"3615bc8\\\" 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\\\">Essie\'s Loving Touch  <span style=\\\"color:#FECE00\\\">accepts<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ccd0924 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"ccd0924\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" xmlns:xlink=\\\"http:\\/\\/www.w3.org\\/1999\\/xlink\\\" width=\\\"512\\\" height=\\\"512\\\" x=\\\"0\\\" y=\\\"0\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"enable-background:new 0 0 512 512\\\" xml:space=\\\"preserve\\\" class=\\\"\\\"><g><path d=\\\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\\\" fill=\\\"#FFFFFF\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><\\/g><\\/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\\\">Private Pay<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" xmlns:xlink=\\\"http:\\/\\/www.w3.org\\/1999\\/xlink\\\" width=\\\"512\\\" height=\\\"512\\\" x=\\\"0\\\" y=\\\"0\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"enable-background:new 0 0 512 512\\\" xml:space=\\\"preserve\\\" class=\\\"\\\"><g><path d=\\\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\\\" fill=\\\"#FFFFFF\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><\\/g><\\/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\\\">Texas Medicaid (eligible programs)<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" xmlns:xlink=\\\"http:\\/\\/www.w3.org\\/1999\\/xlink\\\" width=\\\"512\\\" height=\\\"512\\\" x=\\\"0\\\" y=\\\"0\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"enable-background:new 0 0 512 512\\\" xml:space=\\\"preserve\\\" class=\\\"\\\"><g><path d=\\\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\\\" fill=\\\"#FFFFFF\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><\\/g><\\/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\\\">Long-Term Care (LTC) Insurance Plans<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6IjNhMjkzY2YiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJPdXIgZ29hbCBpcyB0byBwcm92aWRlIGV4Y2VwdGlvbmFsLCByZWxpYWJsZSBjYXJlIHRoYXQgYWxsb3dzIHlvdXIgbG92ZWQgb25lcyB0byByZW1haW4gY29uZmlkZW50LCBjb21mb3J0YWJsZSwgYW5kIGluZGVwZW5kZW50IGluIHRoZWlyIG93biBob21lcy4gQXQgRXNzaWUncyBMb3ZpbmcgVG91Y2gsIHdlIGRvbid0IGp1c3QgcHJvdmlkZSBzZXJ2aWNlc1x1MjAxNHdlIGJ1aWxkIG1lYW5pbmdmdWwgcmVsYXRpb25zaGlwcyBhbmQgdHJlYXQgZXZlcnkgY2xpZW50IGxpa2UgZmFtaWx5LiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNDI4ODhmZiJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-acb9938 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"acb9938\\\" 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-a0ea714 elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"a0ea714\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\\\" class=\\\"attachment-full size-full wp-image-439\\\" alt=\\\"\\\" \\/>\\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-4b23a45 elementor-widget__width-initial elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-image\\\" data-id=\\\"4b23a45\\\" 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\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\\\" class=\\\"attachment-full size-full wp-image-454\\\" alt=\\\"\\\" \\/>\\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-4faab94 elementor-widget__width-initial elementor-absolute elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"4faab94\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_position&quot;:&quot;absolute&quot;}\\\" 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\\\" xmlns:xlink=\\\"http:\\/\\/www.w3.org\\/1999\\/xlink\\\" width=\\\"512\\\" height=\\\"512\\\" x=\\\"0\\\" y=\\\"0\\\" viewBox=\\\"0 0 64 64\\\" style=\\\"enable-background:new 0 0 512 512\\\" xml:space=\\\"preserve\\\" class=\\\"\\\"><g><path d=\\\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\\\" fill=\\\"#FECE00\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><path d=\\\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\\\" fill=\\\"#FECE00\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><path d=\\\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\\\" fill=\\\"#FECE00\\\" opacity=\\\"1\\\" data-original=\\\"#000000\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h6 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tMaking Every Touch Loving\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t\\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\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4516, 387, '_wp_page_template', 'elementor_header_footer'),
(4517, 387, '_elementor_edit_mode', 'builder'),
(4518, 387, '_elementor_template_type', 'wp-page'),
(4519, 387, '_elementor_version', '4.1.4'),
(4520, 387, '_elementor_pro_version', '4.0.2'),
(4521, 387, '_elementor_global_class_usage_indexed', '1'),
(4522, 387, '_elementor_global_class_usage_indexed_preview', '1'),
(4523, 387, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4524, 387, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F0F5FA9C\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4526, 387, '_elementor_page_settings', 'a:0:{}'),
(7560, 610, '_elementor_edit_mode', 'builder'),
(7561, 610, '_elementor_template_type', 'wp-page'),
(7562, 610, '_elementor_version', '4.1.4'),
(7563, 610, '_elementor_pro_version', '4.1.2'),
(7564, 610, '_elementor_global_class_usage_indexed', '1'),
(7565, 610, '_elementor_global_class_usage_indexed_preview', '1'),
(7566, 610, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7567, 610, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D81C\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4530, 388, '_elementor_edit_mode', 'builder'),
(4531, 388, '_elementor_template_type', 'wp-page'),
(4532, 388, '_elementor_version', '4.1.4'),
(4533, 388, '_elementor_pro_version', '4.0.2'),
(4534, 388, '_elementor_global_class_usage_indexed', '1'),
(4535, 388, '_elementor_global_class_usage_indexed_preview', '1'),
(4536, 388, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4537, 388, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6963, 565, '_wp_page_template', 'elementor_header_footer'),
(6964, 565, '_elementor_edit_mode', 'builder'),
(6965, 565, '_elementor_template_type', 'wp-page'),
(6966, 565, '_elementor_version', '4.1.4'),
(6967, 565, '_elementor_pro_version', '4.1.2'),
(6968, 565, '_elementor_global_class_usage_indexed', '1'),
(6969, 565, '_elementor_global_class_usage_indexed_preview', '1'),
(6970, 565, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6971, 565, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6973, 565, '_elementor_page_settings', 'a:0:{}'),
(4611, 394, '_wp_page_template', 'elementor_header_footer'),
(4544, 389, '_wp_page_template', 'elementor_header_footer'),
(4545, 389, '_elementor_edit_mode', 'builder'),
(4546, 389, '_elementor_template_type', 'wp-page'),
(4547, 389, '_elementor_version', '4.1.4'),
(4548, 389, '_elementor_pro_version', '4.0.2'),
(4549, 389, '_elementor_global_class_usage_indexed', '1'),
(4550, 389, '_elementor_global_class_usage_indexed_preview', '1'),
(4551, 389, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4552, 389, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4554, 389, '_elementor_page_settings', 'a:0:{}'),
(7556, 609, '_elementor_page_settings', 'a:0:{}'),
(4557, 390, '_wp_page_template', 'elementor_header_footer'),
(4558, 390, '_elementor_edit_mode', 'builder'),
(4559, 390, '_elementor_template_type', 'wp-page'),
(4560, 390, '_elementor_version', '4.1.4'),
(4561, 390, '_elementor_pro_version', '4.0.2'),
(4562, 390, '_elementor_global_class_usage_indexed', '1'),
(4563, 390, '_elementor_global_class_usage_indexed_preview', '1'),
(4564, 390, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4565, 390, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4567, 390, '_elementor_page_settings', 'a:0:{}'),
(7546, 609, '_wp_page_template', 'elementor_header_footer'),
(7547, 609, '_elementor_edit_mode', 'builder'),
(7548, 609, '_elementor_template_type', 'wp-page'),
(7549, 609, '_elementor_version', '4.1.4'),
(7550, 609, '_elementor_pro_version', '4.1.2'),
(7551, 609, '_elementor_global_class_usage_indexed', '1'),
(7552, 609, '_elementor_global_class_usage_indexed_preview', '1'),
(7553, 609, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7554, 609, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D821\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4570, 391, '_wp_page_template', 'elementor_header_footer'),
(4571, 391, '_elementor_edit_mode', 'builder'),
(4572, 391, '_elementor_template_type', 'wp-page'),
(4573, 391, '_elementor_version', '4.1.4'),
(4574, 391, '_elementor_pro_version', '4.0.2'),
(4575, 391, '_elementor_global_class_usage_indexed', '1'),
(4576, 391, '_elementor_global_class_usage_indexed_preview', '1'),
(4577, 391, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4578, 391, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4652, 397, '_wp_page_template', 'elementor_header_footer'),
(4585, 392, '_wp_page_template', 'elementor_header_footer'),
(4586, 392, '_elementor_edit_mode', 'builder'),
(4587, 392, '_elementor_template_type', 'wp-page'),
(4588, 392, '_elementor_version', '4.1.4'),
(4589, 392, '_elementor_pro_version', '4.0.2'),
(4590, 392, '_elementor_global_class_usage_indexed', '1'),
(4591, 392, '_elementor_global_class_usage_indexed_preview', '1'),
(4592, 392, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4593, 392, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4595, 392, '_elementor_page_settings', 'a:0:{}'),
(7543, 608, '_elementor_page_settings', 'a:0:{}'),
(4598, 393, '_wp_page_template', 'elementor_header_footer'),
(4599, 393, '_elementor_edit_mode', 'builder'),
(4600, 393, '_elementor_template_type', 'wp-page'),
(4601, 393, '_elementor_version', '4.1.4'),
(4602, 393, '_elementor_pro_version', '4.0.2'),
(4603, 393, '_elementor_global_class_usage_indexed', '1'),
(4604, 393, '_elementor_global_class_usage_indexed_preview', '1'),
(4605, 393, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4606, 393, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4608, 393, '_elementor_page_settings', 'a:0:{}'),
(7533, 608, '_wp_page_template', 'elementor_header_footer'),
(7534, 608, '_elementor_edit_mode', 'builder'),
(7535, 608, '_elementor_template_type', 'wp-page'),
(7536, 608, '_elementor_version', '4.1.4'),
(7537, 608, '_elementor_pro_version', '4.1.2'),
(7538, 608, '_elementor_global_class_usage_indexed', '1'),
(7539, 608, '_elementor_global_class_usage_indexed_preview', '1'),
(7540, 608, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7541, 608, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D821\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4612, 394, '_elementor_edit_mode', 'builder'),
(4613, 394, '_elementor_template_type', 'wp-page'),
(4614, 394, '_elementor_version', '4.1.4'),
(4615, 394, '_elementor_pro_version', '4.0.2'),
(4616, 394, '_elementor_global_class_usage_indexed', '1'),
(4617, 394, '_elementor_global_class_usage_indexed_preview', '1'),
(4618, 394, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4619, 394, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6976, 566, '_wp_page_template', 'elementor_header_footer'),
(6977, 566, '_elementor_edit_mode', 'builder'),
(6978, 566, '_elementor_template_type', 'wp-page'),
(6979, 566, '_elementor_version', '4.1.4'),
(6980, 566, '_elementor_pro_version', '4.1.2'),
(6981, 566, '_elementor_global_class_usage_indexed', '1'),
(6982, 566, '_elementor_global_class_usage_indexed_preview', '1'),
(6983, 566, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6984, 566, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4626, 395, '_wp_page_template', 'elementor_header_footer'),
(4627, 395, '_elementor_edit_mode', 'builder'),
(4628, 395, '_elementor_template_type', 'wp-page'),
(4629, 395, '_elementor_version', '4.1.4'),
(4630, 395, '_elementor_pro_version', '4.0.2'),
(4631, 395, '_elementor_global_class_usage_indexed', '1'),
(4632, 395, '_elementor_global_class_usage_indexed_preview', '1'),
(4633, 395, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4634, 395, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4636, 395, '_elementor_page_settings', 'a:0:{}'),
(4639, 396, '_wp_page_template', 'elementor_header_footer'),
(4640, 396, '_elementor_edit_mode', 'builder'),
(4641, 396, '_elementor_template_type', 'wp-page'),
(4642, 396, '_elementor_version', '4.1.4'),
(4643, 396, '_elementor_pro_version', '4.0.2'),
(4644, 396, '_elementor_global_class_usage_indexed', '1'),
(4645, 396, '_elementor_global_class_usage_indexed_preview', '1'),
(4646, 396, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4647, 396, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4649, 396, '_elementor_page_settings', 'a:0:{}'),
(7519, 607, '_elementor_edit_mode', 'builder'),
(7520, 607, '_elementor_template_type', 'wp-page'),
(7521, 607, '_elementor_version', '4.1.4'),
(7522, 607, '_elementor_pro_version', '4.1.2'),
(7523, 607, '_elementor_global_class_usage_indexed', '1'),
(7524, 607, '_elementor_global_class_usage_indexed_preview', '1'),
(7525, 607, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7526, 607, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#D8D8D821\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4653, 397, '_elementor_edit_mode', 'builder'),
(4654, 397, '_elementor_template_type', 'wp-page'),
(4655, 397, '_elementor_version', '4.1.4'),
(4656, 397, '_elementor_pro_version', '4.0.2'),
(4657, 397, '_elementor_global_class_usage_indexed', '1'),
(4658, 397, '_elementor_global_class_usage_indexed_preview', '1'),
(4659, 397, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4660, 397, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7058, 572, '_wp_page_template', 'elementor_header_footer'),
(6991, 567, '_wp_page_template', 'elementor_header_footer'),
(6992, 567, '_elementor_edit_mode', 'builder'),
(6993, 567, '_elementor_template_type', 'wp-page'),
(6994, 567, '_elementor_version', '4.1.4'),
(6995, 567, '_elementor_pro_version', '4.1.2'),
(6996, 567, '_elementor_global_class_usage_indexed', '1'),
(6997, 567, '_elementor_global_class_usage_indexed_preview', '1'),
(6998, 567, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6999, 567, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4667, 398, '_wp_page_template', 'elementor_header_footer'),
(4668, 398, '_elementor_edit_mode', 'builder'),
(4669, 398, '_elementor_template_type', 'wp-page'),
(4670, 398, '_elementor_version', '4.1.4'),
(4671, 398, '_elementor_pro_version', '4.0.2'),
(4672, 398, '_elementor_global_class_usage_indexed', '1'),
(4673, 398, '_elementor_global_class_usage_indexed_preview', '1'),
(4674, 398, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4675, 398, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4677, 398, '_elementor_page_settings', 'a:0:{}'),
(7515, 606, '_elementor_page_settings', 'a:0:{}'),
(4680, 399, '_wp_page_template', 'elementor_header_footer'),
(4681, 399, '_elementor_edit_mode', 'builder'),
(4682, 399, '_elementor_template_type', 'wp-page'),
(4683, 399, '_elementor_version', '4.1.4'),
(4684, 399, '_elementor_pro_version', '4.0.2'),
(4685, 399, '_elementor_global_class_usage_indexed', '1'),
(4686, 399, '_elementor_global_class_usage_indexed_preview', '1'),
(4687, 399, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4688, 399, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4690, 399, '_elementor_page_settings', 'a:0:{}'),
(7505, 606, '_wp_page_template', 'elementor_header_footer'),
(7506, 606, '_elementor_edit_mode', 'builder'),
(7507, 606, '_elementor_template_type', 'wp-page'),
(7508, 606, '_elementor_version', '4.1.4'),
(7509, 606, '_elementor_pro_version', '4.1.2'),
(7510, 606, '_elementor_global_class_usage_indexed', '1'),
(7511, 606, '_elementor_global_class_usage_indexed_preview', '1'),
(7512, 606, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7513, 606, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA21\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4693, 400, '_wp_page_template', 'elementor_header_footer'),
(4694, 400, '_elementor_edit_mode', 'builder'),
(4695, 400, '_elementor_template_type', 'wp-page'),
(4696, 400, '_elementor_version', '4.1.4'),
(4697, 400, '_elementor_pro_version', '4.0.2'),
(4698, 400, '_elementor_global_class_usage_indexed', '1'),
(4699, 400, '_elementor_global_class_usage_indexed_preview', '1'),
(4700, 400, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4701, 400, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7001, 567, '_elementor_page_settings', 'a:0:{}'),
(4808, 409, '_wp_page_template', 'elementor_header_footer'),
(4708, 401, '_wp_page_template', 'elementor_header_footer'),
(4709, 401, '_elementor_edit_mode', 'builder'),
(4710, 401, '_elementor_template_type', 'wp-page'),
(4711, 401, '_elementor_version', '4.1.4'),
(4712, 401, '_elementor_pro_version', '4.0.2'),
(4713, 401, '_elementor_global_class_usage_indexed', '1'),
(4714, 401, '_elementor_global_class_usage_indexed_preview', '1'),
(4715, 401, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4716, 401, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4718, 401, '_elementor_page_settings', 'a:0:{}'),
(7502, 605, '_elementor_page_settings', 'a:0:{}'),
(4721, 402, '_wp_page_template', 'elementor_header_footer'),
(4722, 402, '_elementor_edit_mode', 'builder'),
(4723, 402, '_elementor_template_type', 'wp-page'),
(4724, 402, '_elementor_version', '4.1.4'),
(4725, 402, '_elementor_pro_version', '4.0.2'),
(4726, 402, '_elementor_global_class_usage_indexed', '1'),
(4727, 402, '_elementor_global_class_usage_indexed_preview', '1'),
(4728, 402, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4729, 402, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4731, 402, '_elementor_page_settings', 'a:0:{}'),
(7559, 610, '_wp_page_template', 'elementor_header_footer'),
(7492, 605, '_wp_page_template', 'elementor_header_footer'),
(7493, 605, '_elementor_edit_mode', 'builder'),
(7494, 605, '_elementor_template_type', 'wp-page'),
(7495, 605, '_elementor_version', '4.1.4'),
(7496, 605, '_elementor_pro_version', '4.1.2'),
(7497, 605, '_elementor_global_class_usage_indexed', '1'),
(7498, 605, '_elementor_global_class_usage_indexed_preview', '1'),
(7499, 605, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7500, 605, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA21\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4734, 403, '_wp_page_template', 'elementor_header_footer'),
(4735, 403, '_elementor_edit_mode', 'builder'),
(4736, 403, '_elementor_template_type', 'wp-page'),
(4737, 403, '_elementor_version', '4.1.4'),
(4738, 403, '_elementor_pro_version', '4.0.2'),
(4739, 403, '_elementor_global_class_usage_indexed', '1'),
(4740, 403, '_elementor_global_class_usage_indexed_preview', '1'),
(4741, 403, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4742, 403, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7004, 568, '_wp_page_template', 'elementor_header_footer'),
(7005, 568, '_elementor_edit_mode', 'builder'),
(7006, 568, '_elementor_template_type', 'wp-page'),
(7007, 568, '_elementor_version', '4.1.4'),
(7008, 568, '_elementor_pro_version', '4.1.2'),
(7009, 568, '_elementor_global_class_usage_indexed', '1'),
(7010, 568, '_elementor_global_class_usage_indexed_preview', '1'),
(7011, 568, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7012, 568, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4843, 412, '_wp_page_template', 'elementor_header_footer'),
(4821, 410, '_wp_page_template', 'elementor_header_footer'),
(4822, 410, '_elementor_edit_mode', 'builder'),
(4823, 410, '_elementor_template_type', 'wp-page'),
(4824, 410, '_elementor_version', '4.1.4'),
(4825, 410, '_elementor_pro_version', '4.0.2'),
(4826, 410, '_elementor_global_class_usage_indexed', '1'),
(4827, 410, '_elementor_global_class_usage_indexed_preview', '1'),
(4828, 410, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4829, 410, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4831, 410, '_elementor_page_settings', 'a:0:{}'),
(4832, 411, '_wp_page_template', 'elementor_header_footer'),
(4833, 411, '_elementor_edit_mode', 'builder'),
(4834, 411, '_elementor_template_type', 'wp-page'),
(4835, 411, '_elementor_version', '4.1.4'),
(4836, 411, '_elementor_pro_version', '4.0.2'),
(4837, 411, '_elementor_global_class_usage_indexed', '1'),
(4838, 411, '_elementor_global_class_usage_indexed_preview', '1'),
(4839, 411, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4840, 411, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4842, 411, '_elementor_page_settings', 'a:0:{}'),
(4844, 412, '_elementor_edit_mode', 'builder'),
(4845, 412, '_elementor_template_type', 'wp-page'),
(4846, 412, '_elementor_version', '4.1.4'),
(4847, 412, '_elementor_pro_version', '4.0.2'),
(4848, 412, '_elementor_global_class_usage_indexed', '1'),
(4849, 412, '_elementor_global_class_usage_indexed_preview', '1'),
(4850, 412, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4851, 412, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4782, 407, '_wp_page_template', 'elementor_header_footer'),
(4783, 407, '_elementor_edit_mode', 'builder'),
(4784, 407, '_elementor_template_type', 'wp-page'),
(4785, 407, '_elementor_version', '4.1.4'),
(4786, 407, '_elementor_pro_version', '4.0.2'),
(4787, 407, '_elementor_global_class_usage_indexed', '1'),
(4788, 407, '_elementor_global_class_usage_indexed_preview', '1'),
(4789, 407, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4790, 407, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4792, 407, '_elementor_page_settings', 'a:0:{}'),
(4795, 408, '_wp_page_template', 'elementor_header_footer'),
(4796, 408, '_elementor_edit_mode', 'builder'),
(4797, 408, '_elementor_template_type', 'wp-page'),
(4798, 408, '_elementor_version', '4.1.4'),
(4799, 408, '_elementor_pro_version', '4.0.2'),
(4800, 408, '_elementor_global_class_usage_indexed', '1'),
(4801, 408, '_elementor_global_class_usage_indexed_preview', '1'),
(4802, 408, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4803, 408, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns\":\"5\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4805, 408, '_elementor_page_settings', 'a:0:{}'),
(7478, 604, '_elementor_edit_mode', 'builder'),
(7479, 604, '_elementor_template_type', 'wp-page'),
(7480, 604, '_elementor_version', '4.1.4'),
(7481, 604, '_elementor_pro_version', '4.1.2'),
(7482, 604, '_elementor_global_class_usage_indexed', '1'),
(7483, 604, '_elementor_global_class_usage_indexed_preview', '1'),
(7484, 604, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7485, 604, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA21\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4809, 409, '_elementor_edit_mode', 'builder'),
(4810, 409, '_elementor_template_type', 'wp-page'),
(4811, 409, '_elementor_version', '4.1.4'),
(4812, 409, '_elementor_pro_version', '4.0.2'),
(4813, 409, '_elementor_global_class_usage_indexed', '1'),
(4814, 409, '_elementor_global_class_usage_indexed_preview', '1'),
(4815, 409, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4816, 409, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7014, 568, '_elementor_page_settings', 'a:0:{}'),
(4898, 417, '_wp_page_template', 'elementor_header_footer'),
(4899, 417, '_elementor_edit_mode', 'builder'),
(4900, 417, '_elementor_template_type', 'wp-page'),
(4901, 417, '_elementor_version', '4.1.4'),
(4902, 417, '_elementor_pro_version', '4.0.2'),
(4903, 417, '_elementor_global_class_usage_indexed', '1'),
(4904, 417, '_elementor_global_class_usage_indexed_preview', '1'),
(4905, 417, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4906, 417, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}]},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4908, 417, '_elementor_page_settings', 'a:0:{}'),
(4909, 418, '_wp_page_template', 'elementor_header_footer'),
(4910, 418, '_elementor_edit_mode', 'builder'),
(4911, 418, '_elementor_template_type', 'wp-page'),
(4912, 418, '_elementor_version', '4.1.4'),
(4913, 418, '_elementor_pro_version', '4.0.2'),
(4914, 418, '_elementor_global_class_usage_indexed', '1'),
(4915, 418, '_elementor_global_class_usage_indexed_preview', '1'),
(4916, 418, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4917, 418, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}]},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4856, 413, '_wp_attached_file', '2026/07/svgexport-15-2026-07-11T163830.713.svg'),
(4857, 413, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:425;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7630, 381, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>'),
(4859, 414, '_wp_page_template', 'elementor_header_footer'),
(4860, 414, '_elementor_edit_mode', 'builder'),
(4861, 414, '_elementor_template_type', 'wp-page'),
(4862, 414, '_elementor_version', '4.1.4'),
(4863, 414, '_elementor_pro_version', '4.0.2'),
(4864, 414, '_elementor_global_class_usage_indexed', '1'),
(4865, 414, '_elementor_global_class_usage_indexed_preview', '1'),
(4866, 414, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4867, 414, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4869, 414, '_elementor_page_settings', 'a:0:{}'),
(4872, 415, '_wp_page_template', 'elementor_header_footer'),
(4873, 415, '_elementor_edit_mode', 'builder'),
(4874, 415, '_elementor_template_type', 'wp-page'),
(4875, 415, '_elementor_version', '4.1.4'),
(4876, 415, '_elementor_pro_version', '4.0.2'),
(4877, 415, '_elementor_global_class_usage_indexed', '1'),
(4878, 415, '_elementor_global_class_usage_indexed_preview', '1'),
(4879, 415, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4880, 415, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4882, 415, '_elementor_page_settings', 'a:0:{}'),
(7466, 603, '_elementor_template_type', 'wp-page'),
(7467, 603, '_elementor_version', '4.1.4'),
(7468, 603, '_elementor_pro_version', '4.1.2'),
(7469, 603, '_elementor_global_class_usage_indexed', '1'),
(7470, 603, '_elementor_global_class_usage_indexed_preview', '1'),
(7471, 603, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7472, 603, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7474, 603, '_elementor_page_settings', 'a:0:{}'),
(7171, 581, '_wp_page_template', 'elementor_header_footer'),
(7172, 581, '_elementor_edit_mode', 'builder'),
(7173, 581, '_elementor_template_type', 'wp-page'),
(7174, 581, '_elementor_version', '4.1.4'),
(7175, 581, '_elementor_pro_version', '4.1.2'),
(7176, 581, '_elementor_global_class_usage_indexed', '1'),
(7177, 581, '_elementor_global_class_usage_indexed_preview', '1'),
(7178, 581, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7179, 581, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4885, 416, '_wp_page_template', 'elementor_header_footer'),
(4886, 416, '_elementor_edit_mode', 'builder'),
(4887, 416, '_elementor_template_type', 'wp-page'),
(4888, 416, '_elementor_version', '4.1.4'),
(4889, 416, '_elementor_pro_version', '4.0.2'),
(4890, 416, '_elementor_global_class_usage_indexed', '1'),
(4891, 416, '_elementor_global_class_usage_indexed_preview', '1'),
(4892, 416, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4893, 416, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}]},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7018, 569, '_elementor_edit_mode', 'builder'),
(7019, 569, '_elementor_template_type', 'wp-page'),
(7020, 569, '_elementor_version', '4.1.4'),
(7021, 569, '_elementor_pro_version', '4.1.2'),
(7022, 569, '_elementor_global_class_usage_indexed', '1'),
(7023, 569, '_elementor_global_class_usage_indexed_preview', '1'),
(7024, 569, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7025, 569, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4919, 418, '_elementor_page_settings', 'a:0:{}'),
(4920, 419, '_wp_page_template', 'elementor_header_footer'),
(4921, 419, '_elementor_edit_mode', 'builder'),
(4922, 419, '_elementor_template_type', 'wp-page'),
(4923, 419, '_elementor_version', '4.1.4'),
(4924, 419, '_elementor_pro_version', '4.0.2'),
(4925, 419, '_elementor_global_class_usage_indexed', '1'),
(4926, 419, '_elementor_global_class_usage_indexed_preview', '1'),
(4927, 419, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4928, 419, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5143, 436, '_elementor_global_class_usage_indexed', '1'),
(5144, 436, '_elementor_global_class_usage_indexed_preview', '1'),
(5145, 436, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5146, 436, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5148, 436, '_elementor_page_settings', 'a:0:{}'),
(5149, 437, '_wp_page_template', 'elementor_header_footer'),
(5150, 437, '_elementor_edit_mode', 'builder'),
(5151, 437, '_elementor_template_type', 'wp-page'),
(5152, 437, '_elementor_version', '4.1.4'),
(5153, 437, '_elementor_pro_version', '4.0.2'),
(5154, 437, '_elementor_global_class_usage_indexed', '1'),
(5155, 437, '_elementor_global_class_usage_indexed_preview', '1'),
(5156, 437, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5157, 437, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4933, 420, '_wp_page_template', 'elementor_header_footer'),
(4934, 420, '_elementor_edit_mode', 'builder'),
(4935, 420, '_elementor_template_type', 'wp-page'),
(4936, 420, '_elementor_version', '4.1.4'),
(4937, 420, '_elementor_pro_version', '4.0.2'),
(4938, 420, '_elementor_global_class_usage_indexed', '1'),
(4939, 420, '_elementor_global_class_usage_indexed_preview', '1'),
(4940, 420, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4941, 420, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4943, 420, '_elementor_page_settings', 'a:0:{}'),
(7464, 603, '_wp_page_template', 'elementor_header_footer'),
(7465, 603, '_elementor_edit_mode', 'builder'),
(4946, 421, '_wp_page_template', 'elementor_header_footer'),
(4947, 421, '_elementor_edit_mode', 'builder'),
(4948, 421, '_elementor_template_type', 'wp-page'),
(4949, 421, '_elementor_version', '4.1.4'),
(4950, 421, '_elementor_pro_version', '4.0.2'),
(4951, 421, '_elementor_global_class_usage_indexed', '1'),
(4952, 421, '_elementor_global_class_usage_indexed_preview', '1'),
(4953, 421, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4954, 421, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4956, 421, '_elementor_page_settings', 'a:0:{}'),
(7518, 607, '_wp_page_template', 'elementor_header_footer'),
(7451, 602, '_wp_page_template', 'elementor_header_footer'),
(7452, 602, '_elementor_edit_mode', 'builder'),
(7453, 602, '_elementor_template_type', 'wp-page'),
(7454, 602, '_elementor_version', '4.1.4'),
(7455, 602, '_elementor_pro_version', '4.1.2'),
(7456, 602, '_elementor_global_class_usage_indexed', '1'),
(7457, 602, '_elementor_global_class_usage_indexed_preview', '1'),
(7458, 602, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7459, 602, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7461, 602, '_elementor_page_settings', 'a:0:{}'),
(4959, 422, '_wp_page_template', 'elementor_header_footer'),
(4960, 422, '_elementor_edit_mode', 'builder'),
(4961, 422, '_elementor_template_type', 'wp-page'),
(4962, 422, '_elementor_version', '4.1.4'),
(4963, 422, '_elementor_pro_version', '4.0.2'),
(4964, 422, '_elementor_global_class_usage_indexed', '1'),
(4965, 422, '_elementor_global_class_usage_indexed_preview', '1'),
(4966, 422, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4967, 422, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7099, 575, '_wp_page_template', 'elementor_header_footer'),
(7032, 570, '_wp_page_template', 'elementor_header_footer'),
(7033, 570, '_elementor_edit_mode', 'builder'),
(7034, 570, '_elementor_template_type', 'wp-page'),
(7035, 570, '_elementor_version', '4.1.4'),
(7036, 570, '_elementor_pro_version', '4.1.2'),
(7037, 570, '_elementor_global_class_usage_indexed', '1'),
(7038, 570, '_elementor_global_class_usage_indexed_preview', '1'),
(7039, 570, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7040, 570, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4974, 423, '_wp_page_template', 'elementor_header_footer'),
(4975, 423, '_elementor_edit_mode', 'builder'),
(4976, 423, '_elementor_template_type', 'wp-page'),
(4977, 423, '_elementor_version', '4.1.4'),
(4978, 423, '_elementor_pro_version', '4.0.2'),
(4979, 423, '_elementor_global_class_usage_indexed', '1'),
(4980, 423, '_elementor_global_class_usage_indexed_preview', '1'),
(4981, 423, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4982, 423, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4984, 423, '_elementor_page_settings', 'a:0:{}'),
(4987, 424, '_wp_page_template', 'elementor_header_footer'),
(4988, 424, '_elementor_edit_mode', 'builder'),
(4989, 424, '_elementor_template_type', 'wp-page'),
(4990, 424, '_elementor_version', '4.1.4'),
(4991, 424, '_elementor_pro_version', '4.0.2'),
(4992, 424, '_elementor_global_class_usage_indexed', '1'),
(4993, 424, '_elementor_global_class_usage_indexed_preview', '1'),
(4994, 424, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4995, 424, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4997, 424, '_elementor_page_settings', 'a:0:{}'),
(7600, 613, '_wp_page_template', 'elementor_header_footer'),
(7436, 601, '_wp_page_template', 'elementor_header_footer'),
(7437, 601, '_elementor_edit_mode', 'builder'),
(7438, 601, '_elementor_template_type', 'wp-page'),
(7439, 601, '_elementor_version', '4.1.4'),
(7440, 601, '_elementor_pro_version', '4.1.2'),
(7441, 601, '_elementor_global_class_usage_indexed', '1'),
(7442, 601, '_elementor_global_class_usage_indexed_preview', '1'),
(7443, 601, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7444, 601, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5000, 425, '_wp_page_template', 'elementor_header_footer'),
(5001, 425, '_elementor_edit_mode', 'builder'),
(5002, 425, '_elementor_template_type', 'wp-page'),
(5003, 425, '_elementor_version', '4.1.4'),
(5004, 425, '_elementor_pro_version', '4.0.2'),
(5005, 425, '_elementor_global_class_usage_indexed', '1'),
(5006, 425, '_elementor_global_class_usage_indexed_preview', '1'),
(5007, 425, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5008, 425, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7042, 570, '_elementor_page_settings', 'a:0:{}'),
(5082, 431, '_wp_page_template', 'elementor_header_footer'),
(5138, 436, '_wp_page_template', 'elementor_header_footer'),
(5139, 436, '_elementor_edit_mode', 'builder'),
(5140, 436, '_elementor_template_type', 'wp-page'),
(5141, 436, '_elementor_version', '4.1.4'),
(5142, 436, '_elementor_pro_version', '4.0.2'),
(5015, 426, '_wp_page_template', 'elementor_header_footer'),
(5016, 426, '_elementor_edit_mode', 'builder'),
(5017, 426, '_elementor_template_type', 'wp-page'),
(5018, 426, '_elementor_version', '4.1.4'),
(5019, 426, '_elementor_pro_version', '4.0.2'),
(5020, 426, '_elementor_global_class_usage_indexed', '1'),
(5021, 426, '_elementor_global_class_usage_indexed_preview', '1'),
(5022, 426, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5023, 426, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5025, 426, '_elementor_page_settings', 'a:0:{}'),
(5028, 427, '_wp_page_template', 'elementor_header_footer'),
(5029, 427, '_elementor_edit_mode', 'builder'),
(5030, 427, '_elementor_template_type', 'wp-page'),
(5031, 427, '_elementor_version', '4.1.4'),
(5032, 427, '_elementor_pro_version', '4.0.2'),
(5033, 427, '_elementor_global_class_usage_indexed', '1'),
(5034, 427, '_elementor_global_class_usage_indexed_preview', '1'),
(5035, 427, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5036, 427, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5038, 427, '_elementor_page_settings', 'a:0:{}'),
(7423, 600, '_wp_page_template', 'elementor_header_footer'),
(7424, 600, '_elementor_edit_mode', 'builder'),
(7425, 600, '_elementor_template_type', 'wp-page'),
(7426, 600, '_elementor_version', '4.1.4'),
(7427, 600, '_elementor_pro_version', '4.1.2'),
(7428, 600, '_elementor_global_class_usage_indexed', '1'),
(7429, 600, '_elementor_global_class_usage_indexed_preview', '1'),
(7430, 600, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7431, 600, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7433, 600, '_elementor_page_settings', 'a:0:{}'),
(5041, 428, '_wp_page_template', 'elementor_header_footer'),
(5042, 428, '_elementor_edit_mode', 'builder'),
(5043, 428, '_elementor_template_type', 'wp-page'),
(5044, 428, '_elementor_version', '4.1.4'),
(5045, 428, '_elementor_pro_version', '4.0.2'),
(5046, 428, '_elementor_global_class_usage_indexed', '1'),
(5047, 428, '_elementor_global_class_usage_indexed_preview', '1'),
(5048, 428, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5049, 428, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7045, 571, '_wp_page_template', 'elementor_header_footer'),
(7046, 571, '_elementor_edit_mode', 'builder'),
(7047, 571, '_elementor_template_type', 'wp-page'),
(7048, 571, '_elementor_version', '4.1.4'),
(7049, 571, '_elementor_pro_version', '4.1.2'),
(7050, 571, '_elementor_global_class_usage_indexed', '1'),
(7051, 571, '_elementor_global_class_usage_indexed_preview', '1'),
(7052, 571, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7053, 571, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5056, 429, '_wp_page_template', 'elementor_header_footer'),
(5057, 429, '_elementor_edit_mode', 'builder'),
(5058, 429, '_elementor_template_type', 'wp-page'),
(5059, 429, '_elementor_version', '4.1.4'),
(5060, 429, '_elementor_pro_version', '4.0.2'),
(5061, 429, '_elementor_global_class_usage_indexed', '1'),
(5062, 429, '_elementor_global_class_usage_indexed_preview', '1'),
(5063, 429, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5064, 429, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5066, 429, '_elementor_page_settings', 'a:0:{}'),
(7420, 599, '_elementor_page_settings', 'a:0:{}'),
(5069, 430, '_wp_page_template', 'elementor_header_footer'),
(5070, 430, '_elementor_edit_mode', 'builder'),
(5071, 430, '_elementor_template_type', 'wp-page'),
(5072, 430, '_elementor_version', '4.1.4'),
(5073, 430, '_elementor_pro_version', '4.0.2'),
(5074, 430, '_elementor_global_class_usage_indexed', '1'),
(5075, 430, '_elementor_global_class_usage_indexed_preview', '1'),
(5076, 430, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5077, 430, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5079, 430, '_elementor_page_settings', 'a:0:{}'),
(7416, 599, '_elementor_global_class_usage_indexed_preview', '1'),
(7417, 599, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7418, 599, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5083, 431, '_elementor_edit_mode', 'builder'),
(5084, 431, '_elementor_template_type', 'wp-page'),
(5085, 431, '_elementor_version', '4.1.4'),
(5086, 431, '_elementor_pro_version', '4.0.2'),
(5087, 431, '_elementor_global_class_usage_indexed', '1'),
(5088, 431, '_elementor_global_class_usage_indexed_preview', '1'),
(5089, 431, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5090, 431, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7055, 571, '_elementor_page_settings', 'a:0:{}'),
(5160, 438, '_wp_page_template', 'elementor_header_footer'),
(5097, 432, '_wp_attached_file', '2026/07/2148962386-1.jpg'),
(5098, 432, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/07/2148962386-1.jpg\";s:8:\"filesize\";i:72244;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2148962386-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:16342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"2148962386-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:7427;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5099, 433, '_wp_page_template', 'elementor_header_footer'),
(5100, 433, '_elementor_edit_mode', 'builder'),
(5101, 433, '_elementor_template_type', 'wp-page'),
(5102, 433, '_elementor_version', '4.1.4'),
(5103, 433, '_elementor_pro_version', '4.0.2'),
(5104, 433, '_elementor_global_class_usage_indexed', '1'),
(5105, 433, '_elementor_global_class_usage_indexed_preview', '1'),
(5106, 433, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5107, 433, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5109, 433, '_elementor_page_settings', 'a:0:{}'),
(5112, 434, '_wp_page_template', 'elementor_header_footer'),
(5113, 434, '_elementor_edit_mode', 'builder'),
(5114, 434, '_elementor_template_type', 'wp-page'),
(5115, 434, '_elementor_version', '4.1.4'),
(5116, 434, '_elementor_pro_version', '4.0.2'),
(5117, 434, '_elementor_global_class_usage_indexed', '1'),
(5118, 434, '_elementor_global_class_usage_indexed_preview', '1'),
(5119, 434, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5120, 434, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5122, 434, '_elementor_page_settings', 'a:0:{}'),
(5125, 435, '_wp_page_template', 'elementor_header_footer'),
(5126, 435, '_elementor_edit_mode', 'builder'),
(5127, 435, '_elementor_template_type', 'wp-page'),
(5128, 435, '_elementor_version', '4.1.4'),
(5129, 435, '_elementor_pro_version', '4.0.2'),
(5130, 435, '_elementor_global_class_usage_indexed', '1'),
(5131, 435, '_elementor_global_class_usage_indexed_preview', '1'),
(5132, 435, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5133, 435, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7059, 572, '_elementor_edit_mode', 'builder'),
(7060, 572, '_elementor_template_type', 'wp-page'),
(7061, 572, '_elementor_version', '4.1.4'),
(7062, 572, '_elementor_pro_version', '4.1.2'),
(7063, 572, '_elementor_global_class_usage_indexed', '1'),
(7064, 572, '_elementor_global_class_usage_indexed_preview', '1'),
(7065, 572, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7066, 572, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5159, 437, '_elementor_page_settings', 'a:0:{}'),
(5161, 438, '_elementor_edit_mode', 'builder'),
(5162, 438, '_elementor_template_type', 'wp-page'),
(5163, 438, '_elementor_version', '4.1.4'),
(5164, 438, '_elementor_pro_version', '4.0.2'),
(5165, 438, '_elementor_global_class_usage_indexed', '1'),
(5166, 438, '_elementor_global_class_usage_indexed_preview', '1'),
(5167, 438, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5168, 438, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5203, 443, '_wp_page_template', 'elementor_header_footer'),
(5244, 446, '_wp_page_template', 'elementor_header_footer'),
(5393, 458, '_elementor_edit_mode', 'builder'),
(5394, 458, '_elementor_template_type', 'wp-page'),
(5395, 458, '_elementor_version', '4.1.4'),
(5396, 458, '_elementor_pro_version', '4.0.2'),
(5397, 458, '_elementor_global_class_usage_indexed', '1'),
(5398, 458, '_elementor_global_class_usage_indexed_preview', '1'),
(5399, 458, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5400, 458, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5402, 458, '_elementor_page_settings', 'a:0:{}'),
(5403, 459, '_wp_page_template', 'elementor_header_footer'),
(5404, 459, '_elementor_edit_mode', 'builder'),
(5405, 459, '_elementor_template_type', 'wp-page'),
(5406, 459, '_elementor_version', '4.1.4'),
(5407, 459, '_elementor_pro_version', '4.0.2'),
(5408, 459, '_elementor_global_class_usage_indexed', '1'),
(5409, 459, '_elementor_global_class_usage_indexed_preview', '1'),
(5410, 459, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5411, 459, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5173, 439, '_wp_attached_file', '2026/07/Payment-Options.jpeg'),
(5174, 439, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:28:\"2026/07/Payment-Options.jpeg\";s:8:\"filesize\";i:62260;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Payment-Options-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Payment-Options-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7011;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Payment-Options-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59794;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5175, 440, '_wp_attached_file', '2026/07/Payment-Options-2.jpeg'),
(5176, 440, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2026/07/Payment-Options-2.jpeg\";s:8:\"filesize\";i:108002;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Payment-Options-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:23665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Payment-Options-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:7863;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Payment-Options-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:105354;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5177, 441, '_wp_page_template', 'elementor_header_footer'),
(5178, 441, '_elementor_edit_mode', 'builder'),
(5179, 441, '_elementor_template_type', 'wp-page'),
(5180, 441, '_elementor_version', '4.1.4'),
(5181, 441, '_elementor_pro_version', '4.0.2'),
(5182, 441, '_elementor_global_class_usage_indexed', '1'),
(5183, 441, '_elementor_global_class_usage_indexed_preview', '1'),
(5184, 441, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5185, 441, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5187, 441, '_elementor_page_settings', 'a:0:{}'),
(7392, 597, '_elementor_page_settings', 'a:0:{}'),
(5190, 442, '_wp_page_template', 'elementor_header_footer'),
(5191, 442, '_elementor_edit_mode', 'builder'),
(5192, 442, '_elementor_template_type', 'wp-page'),
(5193, 442, '_elementor_version', '4.1.4'),
(5194, 442, '_elementor_pro_version', '4.0.2'),
(5195, 442, '_elementor_global_class_usage_indexed', '1'),
(5196, 442, '_elementor_global_class_usage_indexed_preview', '1'),
(5197, 442, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5198, 442, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5200, 442, '_elementor_page_settings', 'a:0:{}'),
(7382, 597, '_wp_page_template', 'elementor_header_footer'),
(7383, 597, '_elementor_edit_mode', 'builder'),
(7384, 597, '_elementor_template_type', 'wp-page'),
(7385, 597, '_elementor_version', '4.1.4'),
(7386, 597, '_elementor_pro_version', '4.1.2'),
(7387, 597, '_elementor_global_class_usage_indexed', '1'),
(7388, 597, '_elementor_global_class_usage_indexed_preview', '1'),
(7389, 597, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7390, 597, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5204, 443, '_elementor_edit_mode', 'builder'),
(5205, 443, '_elementor_template_type', 'wp-page'),
(5206, 443, '_elementor_version', '4.1.4'),
(5207, 443, '_elementor_pro_version', '4.0.2'),
(5208, 443, '_elementor_global_class_usage_indexed', '1'),
(5209, 443, '_elementor_global_class_usage_indexed_preview', '1'),
(5210, 443, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5211, 443, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7073, 573, '_wp_page_template', 'elementor_header_footer'),
(7074, 573, '_elementor_edit_mode', 'builder'),
(7075, 573, '_elementor_template_type', 'wp-page'),
(7076, 573, '_elementor_version', '4.1.4'),
(7077, 573, '_elementor_pro_version', '4.1.2'),
(7078, 573, '_elementor_global_class_usage_indexed', '1'),
(7079, 573, '_elementor_global_class_usage_indexed_preview', '1'),
(7080, 573, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7081, 573, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5218, 444, '_wp_page_template', 'elementor_header_footer'),
(5219, 444, '_elementor_edit_mode', 'builder'),
(5220, 444, '_elementor_template_type', 'wp-page'),
(5221, 444, '_elementor_version', '4.1.4'),
(5222, 444, '_elementor_pro_version', '4.0.2'),
(5223, 444, '_elementor_global_class_usage_indexed', '1'),
(5224, 444, '_elementor_global_class_usage_indexed_preview', '1'),
(5225, 444, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5226, 444, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5228, 444, '_elementor_page_settings', 'a:0:{}'),
(7379, 596, '_elementor_page_settings', 'a:0:{}'),
(5231, 445, '_wp_page_template', 'elementor_header_footer'),
(5232, 445, '_elementor_edit_mode', 'builder'),
(5233, 445, '_elementor_template_type', 'wp-page'),
(5234, 445, '_elementor_version', '4.1.4'),
(5235, 445, '_elementor_pro_version', '4.0.2'),
(5236, 445, '_elementor_global_class_usage_indexed', '1'),
(5237, 445, '_elementor_global_class_usage_indexed_preview', '1'),
(5238, 445, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5239, 445, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5241, 445, '_elementor_page_settings', 'a:0:{}'),
(7369, 596, '_wp_page_template', 'elementor_header_footer'),
(7370, 596, '_elementor_edit_mode', 'builder'),
(7371, 596, '_elementor_template_type', 'wp-page'),
(7372, 596, '_elementor_version', '4.1.4'),
(7373, 596, '_elementor_pro_version', '4.1.2'),
(7374, 596, '_elementor_global_class_usage_indexed', '1'),
(7375, 596, '_elementor_global_class_usage_indexed_preview', '1'),
(7376, 596, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7377, 596, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5245, 446, '_elementor_edit_mode', 'builder'),
(5246, 446, '_elementor_template_type', 'wp-page'),
(5247, 446, '_elementor_version', '4.1.4'),
(5248, 446, '_elementor_pro_version', '4.0.2'),
(5249, 446, '_elementor_global_class_usage_indexed', '1'),
(5250, 446, '_elementor_global_class_usage_indexed_preview', '1'),
(5251, 446, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5252, 446, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7083, 573, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5304, 450, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5298, 450, '_elementor_template_type', 'wp-page'),
(5299, 450, '_elementor_version', '4.1.4'),
(5300, 450, '_elementor_pro_version', '4.0.2'),
(5301, 450, '_elementor_global_class_usage_indexed', '1'),
(5302, 450, '_elementor_global_class_usage_indexed_preview', '1'),
(5303, 450, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5296, 450, '_wp_page_template', 'elementor_header_footer'),
(5297, 450, '_elementor_edit_mode', 'builder'),
(5272, 448, '_wp_page_template', 'elementor_header_footer'),
(5273, 448, '_elementor_edit_mode', 'builder'),
(5274, 448, '_elementor_template_type', 'wp-page'),
(5275, 448, '_elementor_version', '4.1.4'),
(5276, 448, '_elementor_pro_version', '4.0.2'),
(5277, 448, '_elementor_global_class_usage_indexed', '1'),
(5278, 448, '_elementor_global_class_usage_indexed_preview', '1'),
(5279, 448, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5280, 448, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5282, 448, '_elementor_page_settings', 'a:0:{}'),
(5284, 449, '_wp_page_template', 'elementor_header_footer'),
(5285, 449, '_elementor_edit_mode', 'builder'),
(5286, 449, '_elementor_template_type', 'wp-page'),
(5287, 449, '_elementor_version', '4.1.4'),
(5288, 449, '_elementor_pro_version', '4.0.2'),
(5289, 449, '_elementor_global_class_usage_indexed', '1'),
(5290, 449, '_elementor_global_class_usage_indexed_preview', '1'),
(5291, 449, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5292, 449, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5294, 449, '_elementor_page_settings', 'a:0:{}'),
(7395, 598, '_wp_page_template', 'elementor_header_footer'),
(7396, 598, '_elementor_edit_mode', 'builder'),
(7397, 598, '_elementor_template_type', 'wp-page'),
(7398, 598, '_elementor_version', '4.1.4'),
(7399, 598, '_elementor_pro_version', '4.1.2'),
(7400, 598, '_elementor_global_class_usage_indexed', '1'),
(7401, 598, '_elementor_global_class_usage_indexed_preview', '1'),
(7402, 598, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7354, 595, '_wp_page_template', 'elementor_header_footer'),
(7355, 595, '_elementor_edit_mode', 'builder'),
(7356, 595, '_elementor_template_type', 'wp-page'),
(7357, 595, '_elementor_version', '4.1.4'),
(7358, 595, '_elementor_pro_version', '4.1.2'),
(7359, 595, '_elementor_global_class_usage_indexed', '1'),
(7360, 595, '_elementor_global_class_usage_indexed_preview', '1'),
(7361, 595, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7362, 595, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6194, 514, '_elementor_page_settings', 'a:0:{}'),
(7629, 375, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>'),
(6395, 529, '_wp_page_template', 'elementor_header_footer'),
(6742, 550, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6504, 536, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6509, 537, '_elementor_edit_mode', 'builder'),
(7628, 371, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>'),
(7615, 136, '_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:23:\"widget-pp-advanced-menu\";i:3;s:8:\"e-sticky\";}s:7:\"scripts\";a:5:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:21:\"pp-smartmenu-keyboard\";i:3;s:16:\"pp-advanced-menu\";i:4;s:8:\"e-sticky\";}}'),
(7616, 482, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:2:{i:0;s:14:\"widget-heading\";i:1;s:16:\"widget-icon-list\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(7617, 6, '_elementor_css', 'a:6:{s:4:\"time\";i:1783975782;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:\"\";}'),
(7618, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:9:{i:0;s:24:\"widget-animated-headline\";i:1;s:14:\"widget-heading\";i:2;s:22:\"e-animation-fadeInLeft\";i:3;s:12:\"widget-image\";i:4;s:23:\"e-animation-fadeInRight\";i:5;s:20:\"e-animation-fadeInUp\";i:6;s:18:\"widget-pp-info-box\";i:7;s:16:\"widget-icon-list\";i:8;s:15:\"widget-icon-box\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(7619, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1783975783;s:5:\"fonts\";a:2:{i:0;s:13:\"Fuzzy Bubbles\";i:1;s:4:\"Jost\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;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:\"\";}'),
(7620, 136, '_elementor_css', 'a:6:{s:4:\"time\";i:1783975783;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:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7621, 482, '_elementor_css', 'a:6:{s:4:\"time\";i:1783975783;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7622, 141, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>'),
(7623, 145, '_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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>'),
(7624, 136, '_elementor_element_cache', '{\"timeout\":1784062184,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-c9eb270 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"c9eb270\\\" 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-dc78a88 e-con-full e-flex e-con e-child\\\" data-id=\\\"dc78a88\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-73b3717 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"73b3717\\\" 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:8774801449\\\">\\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\\\" xmlns:xlink=\\\"http:\\/\\/www.w3.org\\/1999\\/xlink\\\" id=\\\"Capa_1\\\" x=\\\"0px\\\" y=\\\"0px\\\" viewBox=\\\"0 0 512.076 512.076\\\" style=\\\"enable-background:new 0 0 512.076 512.076;\\\" xml:space=\\\"preserve\\\"><g transform=\\\"translate(-1 -1)\\\">\\t<g>\\t\\t<g>\\t\\t\\t<path d=\\\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\\\"><\\/path>\\t\\t\\t<path d=\\\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\\\"><\\/path>\\t\\t\\t<path d=\\\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\\\"><\\/path>\\t\\t\\t<path d=\\\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\\\"><\\/path>\\t\\t<\\/g>\\t<\\/g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><g><\\/g><\\/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\\\">(877) 480-1449<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-afb7412 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"afb7412\\\" 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:Essieslovingtouch@gmail.com\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg 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=\\\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\\\"><\\/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\\\">Essieslovingtouch@gmail.com<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c45c597 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"c45c597\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;],&quot;sticky_effects_offset&quot;:50,&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-8832fbd e-con-full e-flex e-con e-child\\\" data-id=\\\"8832fbd\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-be30273 e-con-full e-flex e-con e-child\\\" data-id=\\\"be30273\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a48484f elementor-widget elementor-widget-image\\\" data-id=\\\"a48484f\\\" 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\\/essie\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"595\\\" height=\\\"325\\\" src=\\\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\\\" class=\\\"attachment-full size-full wp-image-150\\\" alt=\\\"\\\" \\/>\\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-8894da0 e-con-full e-flex e-con e-child\\\" data-id=\\\"8894da0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6IjRiYzQ4NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJhbGlnbl9pdGVtcyI6ImNlbnRlciIsIm1lbnVfdHlwZSI6Im9mZi1jYW52YXMiLCJmdWxsX3dpZHRoIjoic3RyZXRjaCIsInRvZ2dsZV9sYWJlbCI6Ik1lbnUiLCJ0b2dnbGVfYWxpZ24iOiJyaWdodCIsInBvaW50ZXJfY29sb3JfbWVudV9pdGVtX2hvdmVyIjoiIzAyMDEwMTAwIiwicG9pbnRlcl9jb2xvcl9tZW51X2l0ZW1fYWN0aXZlIjoiIzAyMDEwMTAwIiwidG9nZ2xlX3RoaWNrbmVzcyI6eyJ1bml0IjoicHgiLCJzaXplIjoyLCJzaXplcyI6W119LCJvZmZjYW52YXNfcG9zaXRpb24iOiJyaWdodCIsIm1lbnVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwibWVudV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTUsInNpemVzIjpbXX0sIm1lbnVfdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjUwMCIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNzJkZGQ3YyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiY29sb3JfbWVudV9pdGVtIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsImNvbG9yX21lbnVfaXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJjb2xvcl9tZW51X2l0ZW1fYWN0aXZlIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsInRvZ2dsZV9iYWNrZ3JvdW5kX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsInRvZ2dsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJvdmVybGF5X2JnX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9saW5rX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsIm1vYmlsZV9saW5rX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9saW5rX2JnX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsImNsb3NlX2ljb25fY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1hZHZhbmNlZC1tZW51In0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-0d1ba9e e-con-full elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con e-child\\\" data-id=\\\"0d1ba9e\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7424ff5 elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"7424ff5\\\" 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\\/essie\\/#paymeny\\\">\\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\\\">Payment<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(7625, 374, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>'),
(7626, 372, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>'),
(7627, 373, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>'),
(5379, 457, '_wp_page_template', 'elementor_header_footer'),
(5310, 451, '_wp_page_template', 'elementor_header_footer'),
(5311, 451, '_elementor_edit_mode', 'builder'),
(5312, 451, '_elementor_template_type', 'wp-page'),
(5313, 451, '_elementor_version', '4.1.4'),
(5314, 451, '_elementor_pro_version', '4.0.2'),
(5315, 451, '_elementor_global_class_usage_indexed', '1'),
(5316, 451, '_elementor_global_class_usage_indexed_preview', '1'),
(5317, 451, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5318, 451, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5320, 451, '_elementor_page_settings', 'a:0:{}'),
(7351, 594, '_elementor_page_settings', 'a:0:{}'),
(5323, 452, '_wp_page_template', 'elementor_header_footer'),
(5324, 452, '_elementor_edit_mode', 'builder'),
(5325, 452, '_elementor_template_type', 'wp-page'),
(5326, 452, '_elementor_version', '4.1.4'),
(5327, 452, '_elementor_pro_version', '4.0.2'),
(5328, 452, '_elementor_global_class_usage_indexed', '1'),
(5329, 452, '_elementor_global_class_usage_indexed_preview', '1'),
(5330, 452, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5331, 452, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options-2.jpeg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5333, 452, '_elementor_page_settings', 'a:0:{}'),
(7341, 594, '_wp_page_template', 'elementor_header_footer'),
(7342, 594, '_elementor_edit_mode', 'builder'),
(7343, 594, '_elementor_template_type', 'wp-page'),
(7344, 594, '_elementor_version', '4.1.4'),
(7345, 594, '_elementor_pro_version', '4.1.2'),
(7346, 594, '_elementor_global_class_usage_indexed', '1'),
(7347, 594, '_elementor_global_class_usage_indexed_preview', '1'),
(7348, 594, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7349, 594, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5336, 453, '_wp_page_template', 'elementor_header_footer'),
(5337, 453, '_elementor_edit_mode', 'builder'),
(5338, 453, '_elementor_template_type', 'wp-page'),
(5339, 453, '_elementor_version', '4.1.4'),
(5340, 453, '_elementor_pro_version', '4.0.2'),
(5341, 453, '_elementor_global_class_usage_indexed', '1'),
(5342, 453, '_elementor_global_class_usage_indexed_preview', '1'),
(5343, 453, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5344, 453, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6702, 548, '_wp_page_template', 'elementor_header_footer'),
(6252, 519, '_wp_page_template', 'elementor_header_footer'),
(6502, 536, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6503, 536, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6689, 547, '_wp_page_template', 'elementor_header_footer'),
(6690, 547, '_elementor_edit_mode', 'builder'),
(6691, 547, '_elementor_template_type', 'wp-page'),
(6692, 547, '_elementor_version', '4.1.4'),
(6693, 547, '_elementor_pro_version', '4.1.2'),
(6694, 547, '_elementor_global_class_usage_indexed', '1'),
(6695, 547, '_elementor_global_class_usage_indexed_preview', '1'),
(6696, 547, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6697, 547, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6596, 542, '_wp_page_template', 'default'),
(6597, 542, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6338, 525, '_elementor_edit_mode', 'builder'),
(6339, 525, '_elementor_template_type', 'footer'),
(6340, 525, '_elementor_version', '4.1.4'),
(6341, 525, '_elementor_pro_version', '4.1.2'),
(6342, 525, '_elementor_global_class_usage_indexed', '1'),
(6343, 525, '_elementor_global_class_usage_indexed_preview', '1'),
(6344, 525, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6345, 525, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6346, 525, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6185, 514, '_wp_page_template', 'elementor_header_footer'),
(6186, 514, '_elementor_edit_mode', 'builder'),
(6187, 514, '_elementor_template_type', 'wp-page'),
(6188, 514, '_elementor_version', '4.1.4'),
(6189, 514, '_elementor_pro_version', '4.0.2'),
(6190, 514, '_elementor_global_class_usage_indexed', '1'),
(6191, 514, '_elementor_global_class_usage_indexed_preview', '1'),
(6192, 514, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6193, 514, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5392, 458, '_wp_page_template', 'elementor_header_footer'),
(5351, 454, '_wp_attached_file', '2026/07/2150216370-1.jpg'),
(5352, 454, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/07/2150216370-1.jpg\";s:8:\"filesize\";i:76023;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2150216370-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:15512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"2150216370-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:7443;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5353, 455, '_wp_page_template', 'elementor_header_footer'),
(5354, 455, '_elementor_edit_mode', 'builder'),
(5355, 455, '_elementor_template_type', 'wp-page'),
(5356, 455, '_elementor_version', '4.1.4'),
(5357, 455, '_elementor_pro_version', '4.0.2'),
(5358, 455, '_elementor_global_class_usage_indexed', '1'),
(5359, 455, '_elementor_global_class_usage_indexed_preview', '1'),
(5360, 455, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5361, 455, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5363, 455, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7403, 598, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7414, 599, '_elementor_pro_version', '4.1.2'),
(7415, 599, '_elementor_global_class_usage_indexed', '1'),
(7328, 593, '_wp_page_template', 'elementor_header_footer'),
(7329, 593, '_elementor_edit_mode', 'builder'),
(7330, 593, '_elementor_template_type', 'wp-page'),
(7331, 593, '_elementor_version', '4.1.4'),
(7332, 593, '_elementor_pro_version', '4.1.2'),
(7333, 593, '_elementor_global_class_usage_indexed', '1'),
(7334, 593, '_elementor_global_class_usage_indexed_preview', '1'),
(7335, 593, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7336, 593, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7338, 593, '_elementor_page_settings', 'a:0:{}'),
(5366, 456, '_wp_page_template', 'elementor_header_footer'),
(5367, 456, '_elementor_edit_mode', 'builder'),
(5368, 456, '_elementor_template_type', 'wp-page'),
(5369, 456, '_elementor_version', '4.1.4'),
(5370, 456, '_elementor_pro_version', '4.0.2'),
(5371, 456, '_elementor_global_class_usage_indexed', '1'),
(5372, 456, '_elementor_global_class_usage_indexed_preview', '1'),
(5373, 456, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5374, 456, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2148962386-1.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5376, 456, '_elementor_page_settings', 'a:0:{}'),
(7412, 599, '_elementor_template_type', 'wp-page'),
(7413, 599, '_elementor_version', '4.1.4'),
(7477, 604, '_wp_page_template', 'elementor_header_footer'),
(7410, 599, '_wp_page_template', 'elementor_header_footer'),
(7411, 599, '_elementor_edit_mode', 'builder'),
(5380, 457, '_elementor_edit_mode', 'builder'),
(5381, 457, '_elementor_template_type', 'wp-page'),
(5382, 457, '_elementor_version', '4.1.4'),
(5383, 457, '_elementor_pro_version', '4.0.2'),
(5384, 457, '_elementor_global_class_usage_indexed', '1'),
(5385, 457, '_elementor_global_class_usage_indexed_preview', '1'),
(5386, 457, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5387, 457, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7181, 581, '_elementor_page_settings', 'a:0:{}'),
(6198, 515, '_wp_page_template', 'elementor_header_footer'),
(6199, 515, '_elementor_edit_mode', 'builder'),
(6200, 515, '_elementor_template_type', 'wp-page'),
(6201, 515, '_elementor_version', '4.1.4'),
(6202, 515, '_elementor_pro_version', '4.0.2'),
(6203, 515, '_elementor_global_class_usage_indexed', '1'),
(6204, 515, '_elementor_global_class_usage_indexed_preview', '1'),
(6205, 515, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6206, 515, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5413, 459, '_elementor_page_settings', 'a:0:{}'),
(5414, 460, '_wp_page_template', 'elementor_header_footer'),
(5415, 460, '_elementor_edit_mode', 'builder'),
(5416, 460, '_elementor_template_type', 'wp-page'),
(5417, 460, '_elementor_version', '4.1.4'),
(5418, 460, '_elementor_pro_version', '4.0.2'),
(5419, 460, '_elementor_global_class_usage_indexed', '1'),
(5420, 460, '_elementor_global_class_usage_indexed_preview', '1'),
(5421, 460, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5422, 460, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5663, 478, '_elementor_global_class_usage_indexed', '1'),
(5821, 490, '_elementor_page_settings', 'a:0:{}'),
(5822, 491, '_wp_page_template', 'elementor_header_footer'),
(5823, 491, '_elementor_edit_mode', 'builder'),
(5824, 491, '_elementor_template_type', 'wp-page'),
(5825, 491, '_elementor_version', '4.1.4'),
(5826, 491, '_elementor_pro_version', '4.0.2'),
(5827, 491, '_elementor_global_class_usage_indexed', '1'),
(5828, 491, '_elementor_global_class_usage_indexed_preview', '1'),
(5829, 491, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5830, 491, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5427, 461, '_wp_page_template', 'elementor_header_footer'),
(5428, 461, '_elementor_edit_mode', 'builder'),
(5429, 461, '_elementor_template_type', 'wp-page'),
(5430, 461, '_elementor_version', '4.1.4'),
(5431, 461, '_elementor_pro_version', '4.0.2'),
(5432, 461, '_elementor_global_class_usage_indexed', '1'),
(5433, 461, '_elementor_global_class_usage_indexed_preview', '1'),
(5434, 461, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5435, 461, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5437, 461, '_elementor_page_settings', 'a:0:{}'),
(7314, 591, '_elementor_page_settings', 'a:0:{}'),
(7315, 592, '_wp_page_template', 'elementor_header_footer'),
(7316, 592, '_elementor_edit_mode', 'builder'),
(7317, 592, '_elementor_template_type', 'wp-page'),
(7318, 592, '_elementor_version', '4.1.4'),
(7319, 592, '_elementor_pro_version', '4.1.2'),
(7320, 592, '_elementor_global_class_usage_indexed', '1'),
(7321, 592, '_elementor_global_class_usage_indexed_preview', '1'),
(7322, 592, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7323, 592, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5440, 462, '_wp_page_template', 'elementor_header_footer'),
(5441, 462, '_elementor_edit_mode', 'builder'),
(5442, 462, '_elementor_template_type', 'wp-page'),
(5443, 462, '_elementor_version', '4.1.4'),
(5444, 462, '_elementor_pro_version', '4.0.2'),
(5445, 462, '_elementor_global_class_usage_indexed', '1'),
(5446, 462, '_elementor_global_class_usage_indexed_preview', '1'),
(5447, 462, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5448, 462, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5450, 462, '_elementor_page_settings', 'a:0:{}'),
(5453, 463, '_wp_page_template', 'elementor_header_footer'),
(5454, 463, '_elementor_edit_mode', 'builder'),
(5455, 463, '_elementor_template_type', 'wp-page'),
(5456, 463, '_elementor_version', '4.1.4'),
(5457, 463, '_elementor_pro_version', '4.0.2'),
(5458, 463, '_elementor_global_class_usage_indexed', '1'),
(5459, 463, '_elementor_global_class_usage_indexed_preview', '1'),
(5460, 463, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5461, 463, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6207, 515, '_elementor_page_settings', 'a:0:{}'),
(7303, 590, '_elementor_page_settings', 'a:0:{}'),
(7304, 591, '_wp_page_template', 'elementor_header_footer'),
(7305, 591, '_elementor_edit_mode', 'builder'),
(7306, 591, '_elementor_template_type', 'wp-page'),
(7307, 591, '_elementor_version', '4.1.4'),
(7308, 591, '_elementor_pro_version', '4.1.2'),
(7309, 591, '_elementor_global_class_usage_indexed', '1'),
(7310, 591, '_elementor_global_class_usage_indexed_preview', '1'),
(7311, 591, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7312, 591, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6722, 549, '_elementor_global_class_usage_indexed_preview', '1'),
(6723, 549, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6724, 549, '_wp_page_template', 'default'),
(6725, 549, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6726, 549, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5661, 478, '_elementor_version', '4.1.4'),
(5468, 464, '_wp_page_template', 'elementor_header_footer'),
(5469, 464, '_elementor_edit_mode', 'builder'),
(5470, 464, '_elementor_template_type', 'wp-page'),
(5471, 464, '_elementor_version', '4.1.4'),
(5472, 464, '_elementor_pro_version', '4.0.2'),
(5473, 464, '_elementor_global_class_usage_indexed', '1'),
(5474, 464, '_elementor_global_class_usage_indexed_preview', '1'),
(5475, 464, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5476, 464, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5478, 464, '_elementor_page_settings', 'a:0:{}'),
(5481, 465, '_wp_page_template', 'elementor_header_footer'),
(5482, 465, '_elementor_edit_mode', 'builder'),
(5483, 465, '_elementor_template_type', 'wp-page'),
(5484, 465, '_elementor_version', '4.1.4'),
(5485, 465, '_elementor_pro_version', '4.0.2'),
(5486, 465, '_elementor_global_class_usage_indexed', '1'),
(5487, 465, '_elementor_global_class_usage_indexed_preview', '1'),
(5488, 465, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5489, 465, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"start\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5491, 465, '_elementor_page_settings', 'a:0:{}'),
(7280, 589, '_wp_page_template', 'elementor_header_footer'),
(7281, 589, '_elementor_edit_mode', 'builder'),
(7282, 589, '_elementor_template_type', 'wp-page'),
(7283, 589, '_elementor_version', '4.1.4'),
(7284, 589, '_elementor_pro_version', '4.1.2'),
(7285, 589, '_elementor_global_class_usage_indexed', '1'),
(7286, 589, '_elementor_global_class_usage_indexed_preview', '1'),
(7287, 589, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7288, 589, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5662, 478, '_elementor_pro_version', '4.0.2'),
(5494, 466, '_wp_page_template', 'elementor_header_footer'),
(5495, 466, '_elementor_edit_mode', 'builder'),
(5496, 466, '_elementor_template_type', 'wp-page'),
(5497, 466, '_elementor_version', '4.1.4'),
(5498, 466, '_elementor_pro_version', '4.0.2'),
(5499, 466, '_elementor_global_class_usage_indexed', '1'),
(5500, 466, '_elementor_global_class_usage_indexed_preview', '1'),
(5501, 466, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5502, 466, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6239, 518, '_wp_page_template', 'elementor_header_footer'),
(6240, 518, '_elementor_edit_mode', 'builder'),
(6241, 518, '_elementor_template_type', 'wp-page'),
(6242, 518, '_elementor_version', '4.1.4'),
(6243, 518, '_elementor_pro_version', '4.1.2'),
(6244, 518, '_elementor_global_class_usage_indexed', '1'),
(6245, 518, '_elementor_global_class_usage_indexed_preview', '1'),
(6246, 518, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6247, 518, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5576, 472, '_wp_page_template', 'elementor_header_footer'),
(5673, 479, '_wp_page_template', 'elementor_header_footer'),
(5674, 479, '_elementor_edit_mode', 'builder'),
(5675, 479, '_elementor_template_type', 'wp-page'),
(5676, 479, '_elementor_version', '4.1.4'),
(5813, 490, '_elementor_template_type', 'wp-page'),
(5814, 490, '_elementor_version', '4.1.4'),
(5815, 490, '_elementor_pro_version', '4.0.2'),
(5816, 490, '_elementor_global_class_usage_indexed', '1'),
(5817, 490, '_elementor_global_class_usage_indexed_preview', '1'),
(5818, 490, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5819, 490, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5509, 467, '_wp_page_template', 'elementor_header_footer'),
(5510, 467, '_elementor_edit_mode', 'builder'),
(5511, 467, '_elementor_template_type', 'wp-page'),
(5512, 467, '_elementor_version', '4.1.4'),
(5513, 467, '_elementor_pro_version', '4.0.2'),
(5514, 467, '_elementor_global_class_usage_indexed', '1'),
(5515, 467, '_elementor_global_class_usage_indexed_preview', '1'),
(5516, 467, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5517, 467, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5519, 467, '_elementor_page_settings', 'a:0:{}'),
(7267, 588, '_wp_page_template', 'elementor_header_footer'),
(7268, 588, '_elementor_edit_mode', 'builder'),
(7269, 588, '_elementor_template_type', 'wp-page'),
(7270, 588, '_elementor_version', '4.1.4'),
(7271, 588, '_elementor_pro_version', '4.1.2'),
(7272, 588, '_elementor_global_class_usage_indexed', '1'),
(7273, 588, '_elementor_global_class_usage_indexed_preview', '1'),
(7274, 588, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7275, 588, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7277, 588, '_elementor_page_settings', 'a:0:{}'),
(5522, 468, '_wp_page_template', 'elementor_header_footer'),
(5523, 468, '_elementor_edit_mode', 'builder'),
(5524, 468, '_elementor_template_type', 'wp-page'),
(5525, 468, '_elementor_version', '4.1.4'),
(5526, 468, '_elementor_pro_version', '4.0.2'),
(5527, 468, '_elementor_global_class_usage_indexed', '1'),
(5528, 468, '_elementor_global_class_usage_indexed_preview', '1'),
(5529, 468, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5530, 468, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA47\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5532, 468, '_elementor_page_settings', 'a:0:{}'),
(5659, 478, '_elementor_edit_mode', 'builder'),
(5660, 478, '_elementor_template_type', 'wp-page'),
(5535, 469, '_wp_page_template', 'elementor_header_footer'),
(5536, 469, '_elementor_edit_mode', 'builder'),
(5537, 469, '_elementor_template_type', 'wp-page'),
(5538, 469, '_elementor_version', '4.1.4'),
(5539, 469, '_elementor_pro_version', '4.0.2'),
(5540, 469, '_elementor_global_class_usage_indexed', '1'),
(5541, 469, '_elementor_global_class_usage_indexed_preview', '1'),
(5542, 469, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5543, 469, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#4946463D\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6781, 553, '_elementor_edit_mode', 'builder'),
(6249, 518, '_elementor_page_settings', 'a:0:{}'),
(7187, 582, '_elementor_pro_version', '4.1.2'),
(7188, 582, '_elementor_global_class_usage_indexed', '1'),
(7189, 582, '_elementor_global_class_usage_indexed_preview', '1'),
(7190, 582, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7191, 582, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7183, 582, '_wp_page_template', 'elementor_header_footer'),
(7184, 582, '_elementor_edit_mode', 'builder'),
(7185, 582, '_elementor_template_type', 'wp-page'),
(7186, 582, '_elementor_version', '4.1.4'),
(7169, 580, '_elementor_page_settings', 'a:0:{}'),
(5550, 470, '_wp_page_template', 'elementor_header_footer'),
(5551, 470, '_elementor_edit_mode', 'builder'),
(5552, 470, '_elementor_template_type', 'wp-page'),
(5553, 470, '_elementor_version', '4.1.4'),
(5554, 470, '_elementor_pro_version', '4.0.2'),
(5555, 470, '_elementor_global_class_usage_indexed', '1'),
(5556, 470, '_elementor_global_class_usage_indexed_preview', '1'),
(5557, 470, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5558, 470, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#4946463D\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5560, 470, '_elementor_page_settings', 'a:0:{}'),
(7247, 586, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7254, 587, '_wp_page_template', 'elementor_header_footer'),
(7255, 587, '_elementor_edit_mode', 'builder'),
(7256, 587, '_elementor_template_type', 'wp-page'),
(7257, 587, '_elementor_version', '4.1.4'),
(7258, 587, '_elementor_pro_version', '4.1.2'),
(7259, 587, '_elementor_global_class_usage_indexed', '1'),
(7260, 587, '_elementor_global_class_usage_indexed_preview', '1'),
(7261, 587, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7262, 587, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7264, 587, '_elementor_page_settings', 'a:0:{}'),
(5563, 471, '_wp_page_template', 'elementor_header_footer'),
(5564, 471, '_elementor_edit_mode', 'builder'),
(5565, 471, '_elementor_template_type', 'wp-page'),
(5566, 471, '_elementor_version', '4.1.4'),
(5567, 471, '_elementor_pro_version', '4.0.2'),
(5568, 471, '_elementor_global_class_usage_indexed', '1'),
(5569, 471, '_elementor_global_class_usage_indexed_preview', '1'),
(5570, 471, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5571, 471, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#4946463D\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5573, 471, '_elementor_page_settings', 'a:0:{}'),
(7238, 586, '_elementor_edit_mode', 'builder'),
(7239, 586, '_elementor_template_type', 'header'),
(7240, 586, '_elementor_version', '4.1.4'),
(7241, 586, '_elementor_pro_version', '4.1.2'),
(7242, 586, '_elementor_global_class_usage_indexed', '1'),
(7243, 586, '_elementor_global_class_usage_indexed_preview', '1'),
(7244, 586, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7245, 586, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7246, 586, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"},\"z_index\":9},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}],\"flex_justify_content_mobile_extra\":\"center\",\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(877) 480-1449\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:8774801449\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Essieslovingtouch@gmail.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:Essieslovingtouch@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5577, 472, '_elementor_edit_mode', 'builder'),
(5578, 472, '_elementor_template_type', 'wp-page'),
(5579, 472, '_elementor_version', '4.1.4'),
(5580, 472, '_elementor_pro_version', '4.0.2'),
(5581, 472, '_elementor_global_class_usage_indexed', '1'),
(5582, 472, '_elementor_global_class_usage_indexed_preview', '1'),
(5583, 472, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5584, 472, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464624\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6253, 519, '_elementor_edit_mode', 'builder'),
(6254, 519, '_elementor_template_type', 'wp-page'),
(6255, 519, '_elementor_version', '4.1.4'),
(6256, 519, '_elementor_pro_version', '4.1.2'),
(6257, 519, '_elementor_global_class_usage_indexed', '1'),
(6258, 519, '_elementor_global_class_usage_indexed_preview', '1'),
(6259, 519, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6260, 519, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6765, 552, '_elementor_edit_mode', 'builder'),
(6766, 552, '_elementor_template_type', 'header'),
(6767, 552, '_elementor_version', '4.1.4'),
(6768, 552, '_elementor_pro_version', '4.1.2'),
(6769, 552, '_elementor_global_class_usage_indexed', '1'),
(6770, 552, '_elementor_global_class_usage_indexed_preview', '1'),
(6771, 552, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6772, 552, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6773, 552, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-117\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6774, 552, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6797, 554, '_elementor_edit_mode', 'builder'),
(6782, 553, '_elementor_template_type', 'header'),
(6783, 553, '_elementor_version', '4.1.4'),
(6784, 553, '_elementor_pro_version', '4.1.2'),
(6785, 553, '_elementor_global_class_usage_indexed', '1'),
(6786, 553, '_elementor_global_class_usage_indexed_preview', '1'),
(6787, 553, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6788, 553, '_wp_page_template', 'default'),
(6789, 553, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-111\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-117\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5591, 473, '_wp_page_template', 'elementor_header_footer'),
(5592, 473, '_elementor_edit_mode', 'builder'),
(5593, 473, '_elementor_template_type', 'wp-page'),
(5594, 473, '_elementor_version', '4.1.4'),
(5595, 473, '_elementor_pro_version', '4.0.2'),
(5596, 473, '_elementor_global_class_usage_indexed', '1'),
(5597, 473, '_elementor_global_class_usage_indexed_preview', '1'),
(5598, 473, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5599, 473, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464624\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5601, 473, '_elementor_page_settings', 'a:0:{}'),
(7223, 585, '_wp_page_template', 'elementor_header_footer'),
(7224, 585, '_elementor_edit_mode', 'builder'),
(7225, 585, '_elementor_template_type', 'wp-page'),
(7226, 585, '_elementor_version', '4.1.4'),
(7227, 585, '_elementor_pro_version', '4.1.2'),
(7228, 585, '_elementor_global_class_usage_indexed', '1'),
(7229, 585, '_elementor_global_class_usage_indexed_preview', '1'),
(7230, 585, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7231, 585, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5604, 474, '_wp_page_template', 'elementor_header_footer'),
(5605, 474, '_elementor_edit_mode', 'builder'),
(5606, 474, '_elementor_template_type', 'wp-page'),
(5607, 474, '_elementor_version', '4.1.4'),
(5608, 474, '_elementor_pro_version', '4.0.2'),
(5609, 474, '_elementor_global_class_usage_indexed', '1'),
(5610, 474, '_elementor_global_class_usage_indexed_preview', '1'),
(5611, 474, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5612, 474, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464624\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5614, 474, '_elementor_page_settings', 'a:0:{}'),
(7220, 584, '_elementor_page_settings', 'a:0:{}'),
(5658, 478, '_wp_page_template', 'elementor_header_footer'),
(5617, 475, '_wp_page_template', 'elementor_header_footer'),
(5618, 475, '_elementor_edit_mode', 'builder'),
(5619, 475, '_elementor_template_type', 'wp-page'),
(5620, 475, '_elementor_version', '4.1.4'),
(5621, 475, '_elementor_pro_version', '4.0.2'),
(5622, 475, '_elementor_global_class_usage_indexed', '1'),
(5623, 475, '_elementor_global_class_usage_indexed_preview', '1'),
(5624, 475, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5625, 475, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7138, 578, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7136, 578, '_elementor_global_class_usage_indexed', '1'),
(7137, 578, '_elementor_global_class_usage_indexed_preview', '1'),
(7133, 578, '_elementor_template_type', 'header'),
(7134, 578, '_elementor_version', '4.1.4'),
(7135, 578, '_elementor_pro_version', '4.1.2'),
(7118, 577, '_elementor_template_type', 'header'),
(7119, 577, '_elementor_version', '4.1.4'),
(7120, 577, '_elementor_pro_version', '4.1.2'),
(7121, 577, '_elementor_global_class_usage_indexed', '1'),
(7122, 577, '_elementor_global_class_usage_indexed_preview', '1'),
(7123, 577, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7124, 577, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7125, 577, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"},\"z_index\":9},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(877) 480-1449\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:8774801449\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7126, 577, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7130, 577, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:576;s:3:\"url\";s:127:\"https://mrarif.me/essie/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_136_2026-07-13-10-33-50_2e8bedbb.png\";}'),
(7141, 578, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7251, 136, '_elementor_page_settings', 'a:0:{}'),
(6267, 520, '_wp_page_template', 'elementor_header_footer'),
(6268, 520, '_elementor_edit_mode', 'builder'),
(6269, 520, '_elementor_template_type', 'wp-page'),
(6270, 520, '_elementor_version', '4.1.4'),
(6271, 520, '_elementor_pro_version', '4.1.2'),
(6272, 520, '_elementor_global_class_usage_indexed', '1'),
(6273, 520, '_elementor_global_class_usage_indexed_preview', '1'),
(6274, 520, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6275, 520, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5632, 476, '_wp_page_template', 'elementor_header_footer'),
(5633, 476, '_elementor_edit_mode', 'builder'),
(5634, 476, '_elementor_template_type', 'wp-page'),
(5635, 476, '_elementor_version', '4.1.4'),
(5636, 476, '_elementor_pro_version', '4.0.2'),
(5637, 476, '_elementor_global_class_usage_indexed', '1'),
(5638, 476, '_elementor_global_class_usage_indexed_preview', '1'),
(5639, 476, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5640, 476, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5642, 476, '_elementor_page_settings', 'a:0:{}'),
(7210, 584, '_wp_page_template', 'elementor_header_footer'),
(7211, 584, '_elementor_edit_mode', 'builder'),
(7212, 584, '_elementor_template_type', 'wp-page'),
(7213, 584, '_elementor_version', '4.1.4'),
(7214, 584, '_elementor_pro_version', '4.1.2'),
(7215, 584, '_elementor_global_class_usage_indexed', '1'),
(7216, 584, '_elementor_global_class_usage_indexed_preview', '1'),
(7217, 584, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7218, 584, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5645, 477, '_wp_page_template', 'elementor_header_footer'),
(5646, 477, '_elementor_edit_mode', 'builder'),
(5647, 477, '_elementor_template_type', 'wp-page'),
(5648, 477, '_elementor_version', '4.1.4'),
(5649, 477, '_elementor_pro_version', '4.0.2'),
(5650, 477, '_elementor_global_class_usage_indexed', '1'),
(5651, 477, '_elementor_global_class_usage_indexed_preview', '1'),
(5652, 477, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5653, 477, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ada96fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"69c0e51\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5655, 477, '_elementor_page_settings', 'a:0:{}'),
(7207, 583, '_elementor_page_settings', 'a:0:{}'),
(5664, 478, '_elementor_global_class_usage_indexed_preview', '1'),
(5665, 478, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5666, 478, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6277, 520, '_elementor_page_settings', 'a:0:{}'),
(5677, 479, '_elementor_pro_version', '4.0.2'),
(5678, 479, '_elementor_global_class_usage_indexed', '1'),
(5679, 479, '_elementor_global_class_usage_indexed_preview', '1'),
(5680, 479, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5681, 479, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5683, 479, '_elementor_page_settings', 'a:0:{}'),
(7197, 583, '_wp_page_template', 'elementor_header_footer'),
(7198, 583, '_elementor_edit_mode', 'builder'),
(7199, 583, '_elementor_template_type', 'wp-page'),
(7200, 583, '_elementor_version', '4.1.4'),
(7201, 583, '_elementor_pro_version', '4.1.2'),
(7202, 583, '_elementor_global_class_usage_indexed', '1'),
(7203, 583, '_elementor_global_class_usage_indexed_preview', '1'),
(7204, 583, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7205, 583, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5686, 480, '_wp_page_template', 'elementor_header_footer'),
(5687, 480, '_elementor_edit_mode', 'builder'),
(5688, 480, '_elementor_template_type', 'wp-page'),
(5689, 480, '_elementor_version', '4.1.4'),
(5690, 480, '_elementor_pro_version', '4.0.2'),
(5691, 480, '_elementor_global_class_usage_indexed', '1'),
(5692, 480, '_elementor_global_class_usage_indexed_preview', '1'),
(5693, 480, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5694, 480, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}]},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5696, 480, '_elementor_page_settings', 'a:0:{}'),
(7637, 482, '_elementor_element_cache', '{\"timeout\":1784062184,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-ec9155a e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ec9155a\\\" 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-274d9c2 e-con-full e-flex e-con e-child\\\" data-id=\\\"274d9c2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b8bb291 elementor-widget elementor-widget-heading\\\" data-id=\\\"b8bb291\\\" 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-9225f2d elementor-list-item-link-inline elementor-align-center elementor-widget__width-initial elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"9225f2d\\\" 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\\/essie\\/\\\">\\n\\n\\t\\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\\/essie\\/#about\\\">\\n\\n\\t\\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\\/essie\\/#services\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Services<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Payment<\\/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-e59955a e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"e59955a\\\" 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[elementor-element k=\\\"fa0fa1316addc32800d4c23fd490c0da\\\" data=\\\"eyJpZCI6ImQ4ODc3YTgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJcdTAwYTkgMjAyNiBFc3NpZSdzIExvdmluZyBUb3VjaCBcdTAwYjcgSG9tZSBDb21wYW5pb24gU2VydmljZXMiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNjhmNjAwNCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(5699, 481, '_wp_page_template', 'elementor_header_footer'),
(5700, 481, '_elementor_edit_mode', 'builder'),
(5701, 481, '_elementor_template_type', 'wp-page'),
(5702, 481, '_elementor_version', '4.1.4'),
(5703, 481, '_elementor_pro_version', '4.0.2'),
(5704, 481, '_elementor_global_class_usage_indexed', '1'),
(5705, 481, '_elementor_global_class_usage_indexed_preview', '1'),
(5706, 481, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5707, 481, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6280, 521, '_wp_page_template', 'elementor_header_footer'),
(6281, 521, '_elementor_edit_mode', 'builder'),
(6282, 521, '_elementor_template_type', 'wp-page'),
(6283, 521, '_elementor_version', '4.1.4'),
(6284, 521, '_elementor_pro_version', '4.1.2'),
(6285, 521, '_elementor_global_class_usage_indexed', '1'),
(6286, 521, '_elementor_global_class_usage_indexed_preview', '1'),
(6287, 521, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6288, 521, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6290, 521, '_elementor_page_settings', 'a:0:{}'),
(5940, 501, '_elementor_version', '4.1.4'),
(5714, 482, '_elementor_edit_mode', 'builder'),
(5715, 482, '_elementor_template_type', 'footer'),
(5716, 483, '_elementor_edit_mode', 'builder'),
(5717, 483, '_elementor_template_type', 'footer'),
(5718, 482, '_elementor_version', '4.1.4'),
(5719, 482, '_elementor_pro_version', '4.1.2'),
(5720, 482, '_elementor_global_class_usage_indexed', '1'),
(5721, 482, '_elementor_global_class_usage_indexed_preview', '1'),
(5722, 482, '_astra_content_layout_flag', 'disabled'),
(5724, 482, 'ast-title-bar-display', 'disabled'),
(5725, 482, 'ast-featured-img', 'disabled'),
(5726, 482, 'ast-site-content-layout', 'full-width-container'),
(5727, 482, 'site-sidebar-layout', 'no-sidebar'),
(5847, 482, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5729, 482, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5730, 482, '_edit_lock', '1783772366:1'),
(5731, 484, '_wp_page_template', 'elementor_header_footer'),
(5732, 484, '_elementor_edit_mode', 'builder'),
(5733, 484, '_elementor_template_type', 'wp-page'),
(5734, 484, '_elementor_version', '4.1.4'),
(5735, 484, '_elementor_pro_version', '4.0.2'),
(5736, 484, '_elementor_global_class_usage_indexed', '1'),
(5737, 484, '_elementor_global_class_usage_indexed_preview', '1'),
(5738, 484, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5739, 484, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5741, 484, '_elementor_page_settings', 'a:0:{}'),
(6676, 546, '_wp_page_template', 'elementor_header_footer'),
(6677, 546, '_elementor_edit_mode', 'builder'),
(6678, 546, '_elementor_template_type', 'wp-page'),
(6679, 546, '_elementor_version', '4.1.4'),
(6680, 546, '_elementor_pro_version', '4.1.2'),
(6681, 546, '_elementor_global_class_usage_indexed', '1'),
(6682, 546, '_elementor_global_class_usage_indexed_preview', '1'),
(6683, 546, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6684, 546, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6612, 543, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6613, 543, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-111\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6614, 543, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6850, 557, '_elementor_global_class_usage_indexed_preview', '1'),
(6851, 557, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6852, 557, '_wp_page_template', 'default'),
(6853, 557, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6721, 549, '_elementor_global_class_usage_indexed', '1'),
(6622, 544, '_elementor_template_type', 'header'),
(6623, 544, '_elementor_version', '4.1.4'),
(6624, 544, '_elementor_pro_version', '4.1.2'),
(6625, 544, '_elementor_global_class_usage_indexed', '1'),
(6626, 544, '_elementor_global_class_usage_indexed_preview', '1'),
(6627, 544, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6628, 544, '_wp_page_template', 'default'),
(6629, 544, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-101\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6630, 544, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6637, 545, '_elementor_edit_mode', 'builder'),
(6638, 545, '_elementor_template_type', 'kit'),
(6639, 545, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(6640, 545, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(6641, 545, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(6642, 545, '_elementor_global_classes_labels', 'a:0:{}'),
(6643, 545, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(6644, 545, '_wp_page_template', 'default'),
(6645, 545, '_elementor_page_settings', 'a:15:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Essie\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1440;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:6:{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:15:\"viewport_laptop\";i:5;s:19:\"viewport_widescreen\";}s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:16:\"site_description\";s:7:\"Welcome\";}'),
(6646, 545, '_elementor_data', '[]'),
(6647, 545, '_elementor_version', '4.1.4'),
(6648, 545, '_elementor_pro_version', '4.0.2'),
(6649, 545, '_elementor_global_class_usage_indexed', '1'),
(6650, 545, '_elementor_global_class_usage_indexed_preview', '1'),
(6733, 550, '_elementor_edit_mode', 'builder'),
(7139, 578, '_wp_page_template', 'default'),
(7140, 578, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"},\"z_index\":9},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(877) 480-1449\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:8774801449\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Essieslovingtouch@gmail.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:Essieslovingtouch@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-102\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6749, 551, '_elementor_edit_mode', 'builder'),
(6734, 550, '_elementor_template_type', 'header'),
(6735, 550, '_elementor_version', '4.1.4'),
(6736, 550, '_elementor_pro_version', '4.1.2'),
(6737, 550, '_elementor_global_class_usage_indexed', '1'),
(6738, 550, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6739, 550, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6740, 550, '_wp_page_template', 'default'),
(6741, 550, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-111\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5744, 485, '_wp_page_template', 'elementor_header_footer'),
(5745, 485, '_elementor_edit_mode', 'builder'),
(5746, 485, '_elementor_template_type', 'wp-page'),
(5747, 485, '_elementor_version', '4.1.4'),
(5748, 485, '_elementor_pro_version', '4.0.2'),
(5749, 485, '_elementor_global_class_usage_indexed', '1'),
(5750, 485, '_elementor_global_class_usage_indexed_preview', '1'),
(5751, 485, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5752, 485, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5754, 485, '_elementor_page_settings', 'a:0:{}'),
(6573, 541, '_elementor_edit_mode', 'builder'),
(6719, 549, '_elementor_version', '4.1.4'),
(6525, 538, '_elementor_edit_mode', 'builder'),
(6526, 538, '_elementor_template_type', 'header'),
(6527, 538, '_elementor_version', '4.1.4'),
(6528, 538, '_elementor_pro_version', '4.1.2'),
(6529, 538, '_elementor_global_class_usage_indexed', '1'),
(6530, 538, '_elementor_global_class_usage_indexed_preview', '1'),
(6531, 538, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6532, 538, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6533, 538, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6534, 538, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6718, 549, '_elementor_template_type', 'header'),
(6590, 542, '_elementor_template_type', 'footer'),
(6541, 539, '_elementor_edit_mode', 'builder'),
(6542, 539, '_elementor_template_type', 'footer'),
(6543, 539, '_elementor_version', '4.1.4'),
(6544, 539, '_elementor_pro_version', '4.1.2'),
(6545, 539, '_elementor_global_class_usage_indexed', '1'),
(6546, 539, '_elementor_global_class_usage_indexed_preview', '1'),
(6547, 539, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6548, 539, '_wp_page_template', 'default'),
(6549, 539, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6550, 539, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6611, 543, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6557, 540, '_elementor_edit_mode', 'builder'),
(6558, 540, '_elementor_template_type', 'footer'),
(6559, 540, '_elementor_version', '4.1.4'),
(6560, 540, '_elementor_pro_version', '4.1.2'),
(6561, 540, '_elementor_global_class_usage_indexed', '1'),
(6562, 540, '_elementor_global_class_usage_indexed_preview', '1'),
(6563, 540, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6564, 540, '_wp_page_template', 'default'),
(6565, 540, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6566, 540, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6602, 482, '_elementor_page_settings', 'a:0:{}'),
(6574, 541, '_elementor_template_type', 'header'),
(6575, 541, '_elementor_version', '4.1.4'),
(6576, 541, '_elementor_pro_version', '4.1.2'),
(6577, 541, '_elementor_global_class_usage_indexed', '1'),
(6578, 541, '_elementor_global_class_usage_indexed_preview', '1'),
(6579, 541, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6580, 541, '_wp_page_template', 'default'),
(6581, 541, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6582, 541, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6621, 544, '_elementor_edit_mode', 'builder'),
(6598, 542, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6861, 558, '_elementor_edit_mode', 'builder'),
(6846, 557, '_elementor_template_type', 'header'),
(6847, 557, '_elementor_version', '4.1.4'),
(6848, 557, '_elementor_pro_version', '4.1.2'),
(6849, 557, '_elementor_global_class_usage_indexed', '1'),
(5941, 501, '_elementor_pro_version', '4.0.2'),
(5942, 501, '_elementor_global_class_usage_indexed', '1'),
(5943, 501, '_elementor_global_class_usage_indexed_preview', '1'),
(5944, 501, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5757, 486, '_wp_page_template', 'elementor_header_footer'),
(5758, 486, '_elementor_edit_mode', 'builder'),
(5759, 486, '_elementor_template_type', 'wp-page'),
(5760, 486, '_elementor_version', '4.1.4'),
(5761, 486, '_elementor_pro_version', '4.0.2'),
(5762, 486, '_elementor_global_class_usage_indexed', '1'),
(5763, 486, '_elementor_global_class_usage_indexed_preview', '1'),
(5764, 486, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5765, 486, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7100, 575, '_elementor_edit_mode', 'builder'),
(7101, 575, '_elementor_template_type', 'wp-page'),
(7102, 575, '_elementor_version', '4.1.4'),
(7103, 575, '_elementor_pro_version', '4.1.2'),
(7104, 575, '_elementor_global_class_usage_indexed', '1'),
(7105, 575, '_elementor_global_class_usage_indexed_preview', '1'),
(7106, 575, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7107, 575, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6294, 522, '_elementor_edit_mode', 'builder'),
(6295, 522, '_elementor_template_type', 'wp-page'),
(6296, 522, '_elementor_version', '4.1.4'),
(6297, 522, '_elementor_pro_version', '4.1.2'),
(6298, 522, '_elementor_global_class_usage_indexed', '1'),
(6299, 522, '_elementor_global_class_usage_indexed_preview', '1'),
(6300, 522, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6301, 522, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5939, 501, '_elementor_template_type', 'wp-page'),
(5811, 490, '_wp_page_template', 'elementor_header_footer'),
(5812, 490, '_elementor_edit_mode', 'builder'),
(5772, 487, '_wp_page_template', 'elementor_header_footer'),
(5773, 487, '_elementor_edit_mode', 'builder'),
(5774, 487, '_elementor_template_type', 'wp-page'),
(5775, 487, '_elementor_version', '4.1.4'),
(5776, 487, '_elementor_pro_version', '4.0.2'),
(5777, 487, '_elementor_global_class_usage_indexed', '1'),
(5778, 487, '_elementor_global_class_usage_indexed_preview', '1'),
(5779, 487, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5780, 487, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5782, 487, '_elementor_page_settings', 'a:0:{}'),
(6471, 534, '_elementor_global_class_usage_indexed_preview', '1'),
(6472, 534, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6473, 534, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6474, 534, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6475, 534, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6838, 556, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6495, 536, '_elementor_edit_mode', 'builder'),
(6496, 536, '_elementor_template_type', 'header'),
(6497, 536, '_elementor_version', '4.1.4'),
(6498, 536, '_elementor_pro_version', '4.1.2'),
(6499, 536, '_elementor_global_class_usage_indexed', '1'),
(6500, 536, '_elementor_global_class_usage_indexed_preview', '1'),
(6501, 536, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6481, 535, '_elementor_edit_mode', 'builder'),
(6482, 535, '_elementor_template_type', 'header'),
(6483, 535, '_elementor_version', '4.1.4'),
(6484, 535, '_elementor_pro_version', '4.1.2'),
(6485, 535, '_elementor_global_class_usage_indexed', '1'),
(6486, 535, '_elementor_global_class_usage_indexed_preview', '1'),
(6487, 535, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6488, 535, '_wp_page_template', 'default'),
(6489, 535, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6490, 535, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6685, 546, '_elementor_page_settings', 'a:0:{}'),
(6720, 549, '_elementor_pro_version', '4.1.2'),
(6510, 537, '_elementor_template_type', 'header'),
(6511, 537, '_elementor_version', '4.1.4'),
(6512, 537, '_elementor_pro_version', '4.1.2'),
(6513, 537, '_elementor_global_class_usage_indexed', '1'),
(6514, 537, '_elementor_global_class_usage_indexed_preview', '1'),
(6515, 537, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6516, 537, '_wp_page_template', 'default'),
(6517, 537, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6518, 537, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5785, 488, '_wp_page_template', 'elementor_header_footer'),
(5786, 488, '_elementor_edit_mode', 'builder'),
(5787, 488, '_elementor_template_type', 'wp-page'),
(5788, 488, '_elementor_version', '4.1.4'),
(5789, 488, '_elementor_pro_version', '4.0.2'),
(5790, 488, '_elementor_global_class_usage_indexed', '1'),
(5791, 488, '_elementor_global_class_usage_indexed_preview', '1'),
(5792, 488, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5793, 488, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5795, 488, '_elementor_page_settings', 'a:0:{}'),
(6698, 547, '_elementor_page_settings', 'a:0:{}'),
(6470, 534, '_elementor_global_class_usage_indexed', '1'),
(6469, 534, '_elementor_pro_version', '4.1.2'),
(6468, 534, '_elementor_version', '4.1.4'),
(6467, 534, '_elementor_template_type', 'header'),
(6466, 534, '_elementor_edit_mode', 'builder'),
(5798, 489, '_wp_page_template', 'elementor_header_footer'),
(5799, 489, '_elementor_edit_mode', 'builder'),
(5800, 489, '_elementor_template_type', 'wp-page'),
(5801, 489, '_elementor_version', '4.1.4'),
(5802, 489, '_elementor_pro_version', '4.0.2'),
(5803, 489, '_elementor_global_class_usage_indexed', '1'),
(5804, 489, '_elementor_global_class_usage_indexed_preview', '1'),
(5805, 489, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5806, 489, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6790, 553, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6813, 555, '_elementor_edit_mode', 'builder'),
(6798, 554, '_elementor_template_type', 'header'),
(6799, 554, '_elementor_version', '4.1.4'),
(6800, 554, '_elementor_pro_version', '4.1.2'),
(6801, 554, '_elementor_global_class_usage_indexed', '1'),
(6802, 554, '_elementor_global_class_usage_indexed_preview', '1'),
(6803, 554, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6804, 554, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6805, 554, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-117\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6806, 554, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6829, 556, '_elementor_edit_mode', 'builder'),
(6814, 555, '_elementor_template_type', 'header'),
(6815, 555, '_elementor_version', '4.1.4'),
(6816, 555, '_elementor_pro_version', '4.1.2'),
(6817, 555, '_elementor_global_class_usage_indexed', '1'),
(6818, 555, '_elementor_global_class_usage_indexed_preview', '1'),
(6819, 555, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6820, 555, '_wp_page_template', 'default'),
(6821, 555, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-101\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6822, 555, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5832, 491, '_elementor_page_settings', 'a:0:{}'),
(5937, 501, '_wp_page_template', 'elementor_header_footer'),
(5938, 501, '_elementor_edit_mode', 'builder'),
(5833, 492, '_wp_page_template', 'elementor_header_footer'),
(5834, 492, '_elementor_edit_mode', 'builder'),
(5835, 492, '_elementor_template_type', 'wp-page'),
(5836, 492, '_elementor_version', '4.1.4'),
(5837, 492, '_elementor_pro_version', '4.0.2'),
(5838, 492, '_elementor_global_class_usage_indexed', '1'),
(5839, 492, '_elementor_global_class_usage_indexed_preview', '1'),
(5840, 492, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5841, 492, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6212, 516, '_elementor_edit_mode', 'builder'),
(6213, 516, '_elementor_template_type', 'wp-page'),
(6214, 516, '_elementor_version', '4.1.4'),
(6215, 516, '_elementor_pro_version', '4.0.2'),
(6216, 516, '_elementor_global_class_usage_indexed', '1'),
(6217, 516, '_elementor_global_class_usage_indexed_preview', '1'),
(6218, 516, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6219, 516, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6750, 551, '_elementor_template_type', 'header'),
(6751, 551, '_elementor_version', '4.1.4'),
(6752, 551, '_elementor_pro_version', '4.1.2'),
(6753, 551, '_elementor_global_class_usage_indexed', '1'),
(6754, 551, '_elementor_global_class_usage_indexed_preview', '1'),
(6755, 551, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6756, 551, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6757, 551, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-121\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-117\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6758, 551, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5952, 502, '_wp_page_template', 'elementor_header_footer'),
(5953, 502, '_elementor_edit_mode', 'builder'),
(5954, 502, '_elementor_template_type', 'wp-page'),
(5955, 502, '_elementor_version', '4.1.4'),
(5956, 502, '_elementor_pro_version', '4.0.2'),
(5957, 502, '_elementor_global_class_usage_indexed', '1'),
(5958, 502, '_elementor_global_class_usage_indexed_preview', '1'),
(5959, 502, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5960, 502, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5846, 482, '_wp_page_template', 'default'),
(5850, 493, '_wp_attached_file', '2026/07/LOGO-13.jpg'),
(5851, 493, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:595;s:6:\"height\";i:325;s:4:\"file\";s:19:\"2026/07/LOGO-13.jpg\";s:8:\"filesize\";i:82349;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"LOGO-13-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"LOGO-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7569;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5852, 494, '_wp_attached_file', '2026/07/New-Project-2026-07-11T171422.480.jpg'),
(5853, 494, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:595;s:6:\"height\";i:325;s:4:\"file\";s:45:\"2026/07/New-Project-2026-07-11T171422.480.jpg\";s:8:\"filesize\";i:75211;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"New-Project-2026-07-11T171422.480-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"New-Project-2026-07-11T171422.480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6953;}}s:10:\"image_meta\";a:13:{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:{}s:3:\"alt\";s:0:\"\";}}'),
(5854, 495, '_elementor_edit_mode', 'builder'),
(5855, 495, '_elementor_template_type', 'footer'),
(5856, 495, '_elementor_version', '4.1.4'),
(5857, 495, '_elementor_pro_version', '4.0.2'),
(5858, 495, '_elementor_global_class_usage_indexed', '1'),
(5859, 495, '_elementor_global_class_usage_indexed_preview', '1'),
(5860, 495, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5861, 495, '_wp_page_template', 'default'),
(5862, 495, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"6464ade\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}]'),
(5864, 495, '_elementor_page_settings', 'a:0:{}'),
(5865, 496, '_elementor_edit_mode', 'builder'),
(5866, 496, '_elementor_template_type', 'footer'),
(5867, 496, '_elementor_version', '4.1.4'),
(5868, 496, '_elementor_pro_version', '4.0.2'),
(5869, 496, '_elementor_global_class_usage_indexed', '1'),
(5870, 496, '_elementor_global_class_usage_indexed_preview', '1'),
(5871, 496, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5872, 496, '_wp_page_template', 'default'),
(5873, 496, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5876, 482, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6324, 524, '_elementor_edit_mode', 'builder'),
(6325, 524, '_elementor_template_type', 'footer'),
(6326, 524, '_elementor_version', '4.1.4');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6327, 524, '_elementor_pro_version', '4.0.2'),
(6328, 524, '_elementor_global_class_usage_indexed', '1'),
(6329, 524, '_elementor_global_class_usage_indexed_preview', '1'),
(6330, 524, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6331, 524, '_wp_page_template', 'default'),
(6332, 524, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5879, 497, '_elementor_edit_mode', 'builder'),
(5880, 497, '_elementor_template_type', 'footer'),
(5881, 497, '_elementor_version', '4.1.4'),
(5882, 497, '_elementor_pro_version', '4.0.2'),
(5883, 497, '_elementor_global_class_usage_indexed', '1'),
(5884, 497, '_elementor_global_class_usage_indexed_preview', '1'),
(5885, 497, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5886, 497, '_wp_page_template', 'default'),
(5887, 497, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5889, 497, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6043, 509, '_elementor_edit_mode', 'builder'),
(5895, 498, '_elementor_edit_mode', 'builder'),
(5896, 498, '_elementor_template_type', 'footer'),
(5897, 498, '_elementor_version', '4.1.4'),
(5898, 498, '_elementor_pro_version', '4.0.2'),
(5899, 498, '_elementor_global_class_usage_indexed', '1'),
(5900, 498, '_elementor_global_class_usage_indexed_preview', '1'),
(5901, 498, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5902, 498, '_wp_page_template', 'default'),
(5903, 498, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5905, 498, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5911, 499, '_wp_page_template', 'elementor_header_footer'),
(5912, 499, '_elementor_edit_mode', 'builder'),
(5913, 499, '_elementor_template_type', 'wp-page'),
(5914, 499, '_elementor_version', '4.1.4'),
(5915, 499, '_elementor_pro_version', '4.0.2'),
(5916, 499, '_elementor_global_class_usage_indexed', '1'),
(5917, 499, '_elementor_global_class_usage_indexed_preview', '1'),
(5918, 499, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5919, 499, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5921, 499, '_elementor_page_settings', 'a:0:{}'),
(6437, 532, '_elementor_edit_mode', 'builder'),
(6438, 532, '_elementor_template_type', 'wp-page'),
(6439, 532, '_elementor_version', '4.1.4'),
(6440, 532, '_elementor_pro_version', '4.1.2'),
(6441, 532, '_elementor_global_class_usage_indexed', '1'),
(6442, 532, '_elementor_global_class_usage_indexed_preview', '1'),
(6443, 532, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6444, 532, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5924, 500, '_wp_page_template', 'elementor_header_footer'),
(5925, 500, '_elementor_edit_mode', 'builder'),
(5926, 500, '_elementor_template_type', 'wp-page'),
(5927, 500, '_elementor_version', '4.1.4'),
(5928, 500, '_elementor_pro_version', '4.0.2'),
(5929, 500, '_elementor_global_class_usage_indexed', '1'),
(5930, 500, '_elementor_global_class_usage_indexed_preview', '1'),
(5931, 500, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5932, 500, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"07eee6e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38a35bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"b75ebf1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5934, 500, '_elementor_page_settings', 'a:0:{}'),
(6433, 531, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5945, 501, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6436, 532, '_wp_page_template', 'elementor_header_footer'),
(6333, 524, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6845, 557, '_elementor_edit_mode', 'builder'),
(6830, 556, '_elementor_template_type', 'header'),
(6831, 556, '_elementor_version', '4.1.4'),
(6832, 556, '_elementor_pro_version', '4.1.2'),
(6833, 556, '_elementor_global_class_usage_indexed', '1'),
(6834, 556, '_elementor_global_class_usage_indexed_preview', '1'),
(6835, 556, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6836, 556, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6837, 556, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-101\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6347, 525, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6594, 542, '_elementor_global_class_usage_indexed_preview', '1'),
(6595, 542, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6610, 543, '_elementor_global_class_usage_indexed_preview', '1'),
(6919, 562, '_wp_page_template', 'elementor_header_footer'),
(7293, 590, '_wp_page_template', 'elementor_header_footer'),
(7294, 590, '_elementor_edit_mode', 'builder'),
(7295, 590, '_elementor_template_type', 'wp-page'),
(7296, 590, '_elementor_version', '4.1.4'),
(7297, 590, '_elementor_pro_version', '4.1.2'),
(7298, 590, '_elementor_global_class_usage_indexed', '1'),
(7299, 590, '_elementor_global_class_usage_indexed_preview', '1'),
(7300, 590, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7301, 590, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction_mobile_extra\":\"row-reverse\",\"flex_wrap_mobile_extra\":\"nowrap\"},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"_flex_align_self_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f460b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0e03676\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b5ba7c8\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"72525ed\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eb5468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bd16c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62da752\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7601a66\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8ccbb2a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"cac20ab\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"d3ccc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"aaf7641\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"7875fce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\",\"background_background\":\"classic\",\"background_color\":\"#F0F5FA11\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6717, 549, '_elementor_edit_mode', 'builder'),
(6605, 543, '_elementor_edit_mode', 'builder'),
(6606, 543, '_elementor_template_type', 'header'),
(6607, 543, '_elementor_version', '4.1.4'),
(6608, 543, '_elementor_pro_version', '4.1.2'),
(6609, 543, '_elementor_global_class_usage_indexed', '1'),
(6591, 542, '_elementor_version', '4.1.4'),
(6592, 542, '_elementor_pro_version', '4.1.2'),
(6593, 542, '_elementor_global_class_usage_indexed', '1'),
(6353, 526, '_elementor_edit_mode', 'builder'),
(6354, 526, '_elementor_template_type', 'footer'),
(6355, 526, '_elementor_version', '4.1.4'),
(6356, 526, '_elementor_pro_version', '4.1.2'),
(6357, 526, '_elementor_global_class_usage_indexed', '1'),
(6358, 526, '_elementor_global_class_usage_indexed_preview', '1'),
(6359, 526, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6360, 526, '_wp_page_template', 'default'),
(6361, 526, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6362, 526, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6589, 542, '_elementor_edit_mode', 'builder'),
(6369, 527, '_wp_page_template', 'elementor_header_footer'),
(6370, 527, '_elementor_edit_mode', 'builder'),
(6371, 527, '_elementor_template_type', 'wp-page'),
(6372, 527, '_elementor_version', '4.1.4'),
(6373, 527, '_elementor_pro_version', '4.1.2'),
(6374, 527, '_elementor_global_class_usage_indexed', '1'),
(6375, 527, '_elementor_global_class_usage_indexed_preview', '1'),
(6376, 527, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6377, 527, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5962, 502, '_elementor_page_settings', 'a:0:{}'),
(6423, 531, '_wp_page_template', 'elementor_header_footer'),
(6424, 531, '_elementor_edit_mode', 'builder'),
(6425, 531, '_elementor_template_type', 'wp-page'),
(6426, 531, '_elementor_version', '4.1.4'),
(6427, 531, '_elementor_pro_version', '4.1.2'),
(6428, 531, '_elementor_global_class_usage_indexed', '1'),
(6429, 531, '_elementor_global_class_usage_indexed_preview', '1'),
(6430, 531, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6431, 531, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5965, 503, '_wp_page_template', 'elementor_header_footer'),
(5966, 503, '_elementor_edit_mode', 'builder'),
(5967, 503, '_elementor_template_type', 'wp-page'),
(5968, 503, '_elementor_version', '4.1.4'),
(5969, 503, '_elementor_pro_version', '4.0.2'),
(5970, 503, '_elementor_global_class_usage_indexed', '1'),
(5971, 503, '_elementor_global_class_usage_indexed_preview', '1'),
(5972, 503, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5973, 503, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5975, 503, '_elementor_page_settings', 'a:0:{}'),
(6854, 557, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6877, 559, '_elementor_edit_mode', 'builder'),
(6862, 558, '_elementor_template_type', 'header'),
(6863, 558, '_elementor_version', '4.1.4'),
(6864, 558, '_elementor_pro_version', '4.1.2'),
(6865, 558, '_elementor_global_class_usage_indexed', '1'),
(6866, 558, '_elementor_global_class_usage_indexed_preview', '1'),
(6867, 558, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6868, 558, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6869, 558, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"space-between\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"flex_align_items\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-107\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":159,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6410, 530, '_wp_page_template', 'elementor_header_footer'),
(6411, 530, '_elementor_edit_mode', 'builder'),
(6412, 530, '_elementor_template_type', 'wp-page'),
(6413, 530, '_elementor_version', '4.1.4'),
(6414, 530, '_elementor_pro_version', '4.1.2'),
(6415, 530, '_elementor_global_class_usage_indexed', '1'),
(6416, 530, '_elementor_global_class_usage_indexed_preview', '1'),
(6417, 530, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6418, 530, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6420, 530, '_elementor_page_settings', 'a:0:{}'),
(6211, 516, '_wp_page_template', 'elementor_header_footer'),
(5978, 504, '_wp_page_template', 'elementor_header_footer'),
(5979, 504, '_elementor_edit_mode', 'builder'),
(5980, 504, '_elementor_template_type', 'wp-page'),
(5981, 504, '_elementor_version', '4.1.4'),
(5982, 504, '_elementor_pro_version', '4.0.2'),
(5983, 504, '_elementor_global_class_usage_indexed', '1'),
(5984, 504, '_elementor_global_class_usage_indexed_preview', '1'),
(5985, 504, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5986, 504, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}]},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6379, 527, '_elementor_page_settings', 'a:0:{}'),
(7086, 574, '_wp_page_template', 'elementor_header_footer'),
(7087, 574, '_elementor_edit_mode', 'builder'),
(7088, 574, '_elementor_template_type', 'wp-page'),
(7089, 574, '_elementor_version', '4.1.4'),
(7090, 574, '_elementor_pro_version', '4.1.2'),
(7091, 574, '_elementor_global_class_usage_indexed', '1'),
(7092, 574, '_elementor_global_class_usage_indexed_preview', '1'),
(7093, 574, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7094, 574, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7096, 574, '_elementor_page_settings', 'a:0:{}'),
(6008, 505, '_menu_item_xfn', ''),
(6009, 505, '_menu_item_url', 'https://mrarif.me/essie/#about'),
(6030, 508, '_elementor_template_type', 'footer'),
(6011, 506, '_menu_item_type', 'custom'),
(6012, 506, '_menu_item_menu_item_parent', '0'),
(6013, 506, '_menu_item_object_id', '506'),
(6014, 506, '_menu_item_object', 'custom'),
(6015, 506, '_menu_item_target', ''),
(6016, 506, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6017, 506, '_menu_item_xfn', ''),
(6018, 506, '_menu_item_url', 'https://mrarif.me/essie/#services'),
(6029, 508, '_elementor_edit_mode', 'builder'),
(6020, 507, '_menu_item_type', 'custom'),
(6021, 507, '_menu_item_menu_item_parent', '0'),
(6022, 507, '_menu_item_object_id', '507'),
(6023, 507, '_menu_item_object', 'custom'),
(6024, 507, '_menu_item_target', ''),
(6025, 507, '_menu_item_classes', 'a:1:{i:0;s:12:\"contact_item\";}'),
(6026, 507, '_menu_item_xfn', ''),
(6027, 507, '_menu_item_url', 'https://mrarif.me/essie/#paymeny'),
(6031, 508, '_elementor_version', '4.1.4'),
(6032, 508, '_elementor_pro_version', '4.0.2'),
(6033, 508, '_elementor_global_class_usage_indexed', '1'),
(6034, 508, '_elementor_global_class_usage_indexed_preview', '1'),
(6035, 508, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6036, 508, '_wp_page_template', 'default'),
(6037, 508, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6039, 508, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6040, 508, '_elementor_page_settings', 'a:0:{}'),
(6870, 558, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6044, 509, '_elementor_template_type', 'footer'),
(6045, 509, '_elementor_version', '4.1.4'),
(6046, 509, '_elementor_pro_version', '4.0.2'),
(6047, 509, '_elementor_global_class_usage_indexed', '1'),
(6048, 509, '_elementor_global_class_usage_indexed_preview', '1'),
(6049, 509, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6050, 509, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6051, 509, '_elementor_data', '[{\"id\":\"ec9155a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a138b03\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5393e33\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b660900\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"716e61a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"274d9c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ff79e76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"93c2c28\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf8db97\"}],\"pp_display_conditions\":[{\"_id\":\"79d49a8\"}]},\"elements\":[{\"id\":\"fd6737d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/New-Project-2026-07-11T171422.480.jpg\",\"id\":494,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":279,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d71cb68\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8bb291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"29a95be\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9225f2d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63d4689\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3a37a60\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"e93d837\"},{\"text\":\"Payment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9536b3d\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_color\":\"#F0F5FA36\",\"text_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"75455f6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e59955a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000A1CE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b70927\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e4b3852\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f77fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6d7b4b8\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d8877a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026 Essie\'s Loving Touch \\u00b7 Home Companion Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68f6004\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(6053, 509, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6060, 510, '_elementor_template_type', 'header'),
(6061, 510, '_elementor_version', '4.1.4'),
(6062, 510, '_elementor_pro_version', '4.0.2'),
(6063, 510, '_elementor_global_class_usage_indexed', '1'),
(6064, 510, '_elementor_global_class_usage_indexed_preview', '1'),
(6065, 510, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6066, 510, '_wp_page_template', 'default'),
(6067, 510, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"Payment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6068, 510, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6307, 523, '_elementor_template_type', 'header'),
(6308, 523, '_elementor_version', '4.1.4'),
(6309, 523, '_elementor_pro_version', '4.0.2'),
(6310, 523, '_elementor_global_class_usage_indexed', '1'),
(6311, 523, '_elementor_global_class_usage_indexed_preview', '1'),
(6312, 523, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6313, 523, '_wp_page_template', 'default'),
(6314, 523, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/#paymeny\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6315, 523, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6306, 523, '_elementor_edit_mode', 'builder'),
(6087, 512, '_elementor_edit_mode', 'builder'),
(6088, 512, '_elementor_template_type', 'header'),
(6089, 512, '_elementor_version', '4.1.4'),
(6090, 512, '_elementor_pro_version', '4.0.2'),
(6091, 512, '_elementor_global_class_usage_indexed', '1'),
(6092, 512, '_elementor_global_class_usage_indexed_preview', '1'),
(6093, 512, '_elementor_migrations_state_d2a1', '4.1.4:4.0.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6094, 512, '_wp_page_template', 'default'),
(6095, 512, '_elementor_data', '[{\"id\":\"c9eb270\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#1F294C\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1a3a1ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4c58654\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7788849\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b64461\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dc78a88\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_mobile\":\"center\",\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"53d8de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f38cba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"08369c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"20\",\"bottom\":\"9\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2042133\"}]},\"elements\":[{\"id\":\"73b3717\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"xxx.xxx.xxx\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/call_1034131.svg\",\"id\":141},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"tel:xxxxxxxxx\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"afb7412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@essie.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/email_3894024.svg\",\"id\":145},\"library\":\"svg\"},\"_id\":\"f4a5299\",\"link\":{\"url\":\"mailto:info@essie.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2926c45\"}],\"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=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c45c597\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d89da1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7c46c03\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"df87210\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-99\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"fdde714\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"8832fbd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ac2308\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d1e6d45\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fabb6d5\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a224433\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"be30273\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"a48484f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/logo-35.png\",\"id\":150,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f34899a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8894da0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}]},\"elements\":[{\"id\":\"4bc4857\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pointer_color_menu_item_active\":\"#02010100\",\"toggle_thickness\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"offcanvas_position\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"72ddd7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"0d1ba9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c12b3ca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"64044b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2249050\"}],\"pp_display_conditions\":[{\"_id\":\"d6a3fa4\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7424ff5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Payment\",\"link\":{\"url\":\"Payment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_align\":\"row-reverse\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"38aed97\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6096, 512, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6382, 528, '_wp_page_template', 'elementor_header_footer'),
(6383, 528, '_elementor_edit_mode', 'builder'),
(6384, 528, '_elementor_template_type', 'wp-page'),
(6385, 528, '_elementor_version', '4.1.4'),
(6386, 528, '_elementor_pro_version', '4.1.2'),
(6387, 528, '_elementor_global_class_usage_indexed', '1'),
(6388, 528, '_elementor_global_class_usage_indexed_preview', '1'),
(6389, 528, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6390, 528, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7159, 580, '_wp_page_template', 'elementor_header_footer'),
(7160, 580, '_elementor_edit_mode', 'builder'),
(7161, 580, '_elementor_template_type', 'wp-page'),
(7162, 580, '_elementor_version', '4.1.4'),
(7163, 580, '_elementor_pro_version', '4.1.2'),
(7164, 580, '_elementor_global_class_usage_indexed', '1'),
(7165, 580, '_elementor_global_class_usage_indexed_preview', '1'),
(7166, 580, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7167, 580, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor2\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"},\"marker_color\":\"#fece00\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"#services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\",\"hide_mobile_extra\":\"hidden-mobile_extra\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"services\",\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"paymeny\",\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6293, 522, '_wp_page_template', 'elementor_header_footer'),
(6226, 517, '_wp_page_template', 'elementor_header_footer'),
(6227, 517, '_elementor_edit_mode', 'builder'),
(6228, 517, '_elementor_template_type', 'wp-page'),
(6229, 517, '_elementor_version', '4.1.4'),
(6230, 517, '_elementor_pro_version', '4.1.2'),
(6231, 517, '_elementor_global_class_usage_indexed', '1'),
(6232, 517, '_elementor_global_class_usage_indexed_preview', '1'),
(6233, 517, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6234, 517, '_elementor_data', '[{\"id\":\"15561fb9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0a598c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"01118e9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"728ed39\"}],\"padding\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac20ed5\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":664,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"70\",\"row\":\"70\",\"isLinked\":true,\"unit\":\"px\",\"size\":70},\"css_classes\":\"hero-section\",\"background_background\":\"classic\",\"background_color\":\"#F7F8F9\",\"flex_gap_tablet\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"flex_gap_mobile_extra\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_title\":\"Container\",\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-30.png\",\"id\":202,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"custom_css\":\"\\/*.hero-section .image_style {*\\/\\r\\n\\/*    position: relative;*\\/\\r\\n\\/*    overflow: hidden;*\\/\\r\\n\\/*    display: inline-block;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style img {*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: auto;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*.hero-section .image_style::after {*\\/\\r\\n\\/*    content: \\\"\\\";*\\/\\r\\n\\/*    position: absolute;*\\/\\r\\n\\/*    top: -120%;*\\/\\r\\n\\/*    left: 0px;*\\/\\r\\n\\/*    width: 100%;*\\/\\r\\n\\/*    height: 60%;*\\/\\r\\n\\/*    border-radius: 121px !important;*\\/\\r\\n\\/*    background: linear-gradient(*\\/\\r\\n\\/*    to bottom,*\\/\\r\\n\\/*    rgba(255,255,255,0) 0%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 15%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 25%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 35%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 45%,*\\/\\r\\n\\/*    rgba(255,255,255,.55) 50%,*\\/\\r\\n\\/*    rgba(255,255,255,.25) 55%,*\\/\\r\\n\\/*    rgba(255,255,255,.12) 65%,*\\/\\r\\n\\/*    rgba(255,255,255,.06) 75%,*\\/\\r\\n\\/*    rgba(255,255,255,.02) 85%,*\\/\\r\\n\\/*    rgba(255,255,255,0) 100%*\\/\\r\\n\\/*);*\\/\\r\\n\\/*    filter: blur(27px);*\\/\\r\\n\\/*    pointer-events: none;*\\/\\r\\n\\/*    animation: shineDown 3s linear infinite;*\\/\\r\\n\\/*}*\\/\\r\\n\\r\\n\\/*@keyframes shineDown {*\\/\\r\\n\\/*    0% {*\\/\\r\\n\\/*        top: -120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    10% {*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    30% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 1;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    40% {*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\r\\n\\/*    100% {*\\/\\r\\n\\/*        top: 120%;*\\/\\r\\n\\/*        opacity: 0;*\\/\\r\\n\\/*    }*\\/\\r\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"18f63f96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"805f1fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ab3aeb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8a5ac73\"}],\"pp_display_conditions\":[{\"_id\":\"f3d3880\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"b702a0c\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"Welcome to \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"alignment\":\"start\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Fuzzy Bubbles\",\"pp_display_conditions\":[{\"_id\":\"7fd937a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"words_color\":\"globals\\/colors?id=astglobalcolor1\",\"marker_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5946b94\",\"elType\":\"widget\",\"settings\":{\"title\":\" Essie\'s Loving <span style=\\\"color:#FECE00;\\\">Touch<\\/span>\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8a5cc29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Making Every Touch Loving\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3ec268b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff79c50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"021eb11\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403ccfe6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"14\",\"row\":\"14\",\"isLinked\":true,\"unit\":\"px\",\"size\":14},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"39e7925\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1c87684\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79b3b12\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9eb8f77\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"7da6ceeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"pp_display_conditions\":[{\"_id\":\"137e73b\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/services\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75b59018\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04eb8f4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f6eb71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"45ecce8\"}],\"pp_display_conditions\":[{\"_id\":\"dfb3bb8\",\"pp_condition_date_time_before_value\":\"2026-07-14 06:21\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"a62eaea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}]},\"elements\":[{\"id\":\"203d1b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-83-1.jpg\",\"id\":132,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"151\",\"right\":\"151\",\"bottom\":\"151\",\"left\":\"151\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d218ec2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b31178b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"805e90e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13c9988\"}],\"pp_display_conditions\":[{\"_id\":\"8c4d17f\"}],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1c3d041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/banner-29.png\",\"id\":86,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":353,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"191\",\"right\":\"191\",\"bottom\":\"191\",\"left\":\"191\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f53a8b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_css_classes\":\"image_style\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"620f1eb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"_element_id\":\"about\"},\"elements\":[{\"id\":\"94cfabd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"6e3d303\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"26090c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-us-13-1.jpg\",\"id\":292,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d79b908\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95dd8bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fdd83f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Independence, Dignity &  <span style=\\\"color:#FECE00;\\\">Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc72e18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br \\/><br \\/>We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0146c63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e7ce81d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"6c6a0c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2f26a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"12c79c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b21dff\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41f7c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f93715\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"74d48b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef72f9\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31c6207\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2cb4e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc8a5b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe0619b\"}],\"pp_display_conditions\":[{\"_id\":\"9719652\"}]},\"elements\":[{\"id\":\"14e33e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"212ba63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/About-Us-3.jpeg\",\"id\":264,\"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\":\"9615e45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e108b0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.\",\"pp_display_conditions\":[{\"_id\":\"0380ffb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55d00c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2dd265\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91a3929\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0b00fde\"}],\"pp_display_conditions\":[{\"_id\":\"e413476\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eb4d294\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32c12b4\",\"elType\":\"widget\",\"settings\":{\"title\":\" Helping You Maintain Independence, <span style=\\\"color:#FECE00;\\\">Dignity & Comfort<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da3e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.\",\"pp_display_conditions\":[{\"_id\":\"e1b47d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9d5251\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3142d26\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d544de7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e715ca8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3ddbc5e\"}]},\"elements\":[{\"id\":\"9c3f1e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"865e8ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-17.jpeg\",\"id\":268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e00039\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a42ddfa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0de85a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c360c8c\"}],\"pp_display_conditions\":[{\"_id\":\"fab16e6\"}]},\"elements\":[{\"id\":\"741ed8a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/about-40-1.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6c081ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5dfd9e6\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FECE0008\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"393a85e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c230aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9021d93\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"da7b1ad\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"936f6d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c741983\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f2c0818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"48a7dfb\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9f4d3e2\"}]},\"elements\":[{\"id\":\"1fa647f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our  <span style=\\\"color:#FECE00;\\\">Services<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02b088f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We proudly offer a variety of non-medical home companion services, including:\",\"align\":\"center\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68861ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7650a0e\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Meal preparation\",\"_id\":\"e2d5c67\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/menu_8708154.svg\",\"id\":374},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Light housekeeping and cleaning\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/dusting_4871604.svg\",\"id\":372},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70fff24\"},{\"title\":\"Grocery shopping and errands\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/grocery-bag_3731113.svg\",\"id\":373},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"72a2987\"},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/checkup_18753278.svg\",\"id\":371},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0d30159\"},{\"title\":\"Companionship and social engagement\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/relationship_16034829.svg\",\"id\":375},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"abaf029\"},{\"title\":\"Transportation to appointments\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/time_15833691.svg\",\"id\":381},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d5a0dca\"},{\"title\":\"Respite care for family caregivers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/family-care_18394352.svg\",\"id\":379},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e2dd9e6\"},{\"title\":\"Additional personalized services based on individual needs\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/mechanic_3833691.svg\",\"id\":380},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"882e9f0\"},{\"title\":\"Personal hygiene assistance, including bathing and dressing\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/towel_18074430.svg\",\"id\":382},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"25f39af\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#000A1C05\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_color_normal\":\"#000a1c\",\"icon_bg_color_normal\":\"#F0F5FA\",\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f3357a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor5\",\"info_box_border_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5be4ec8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e3178d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"59c3850\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3e45185\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"paymeny_section\",\"pp_display_conditions\":[{\"_id\":\"ef9905f\"}],\"custom_css\":\".paymeny_section .elementor-icon-list-icon{\\n    background: #FECE00;\\n    width: 21px;\\n    height: 21px;\\n    border-radius: 100%;\\n    justify-content: center !important;\\n    align-items: center !important;\\n}\"},\"elements\":[{\"id\":\"fca43aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1dcdd43\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c69b954\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9f1ca82\"}],\"pp_display_conditions\":[{\"_id\":\"a17f7c1\"}]},\"elements\":[{\"id\":\"57d2e7a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6776e20\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"3eb4692\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3615bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Essie\'s Loving Touch  <span style=\\\"color:#FECE00;\\\">accepts<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Jost\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2a84dce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0924\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Pay\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"02ad916\"},{\"text\":\"Texas Medicaid (eligible programs)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"7f1a00b\"},{\"text\":\"Long-Term Care (LTC) Insurance Plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T163830.713.svg\",\"id\":413},\"library\":\"svg\"},\"_id\":\"f23e530\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a8455a2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a293cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services\\u2014we build meaningful relationships and treat every client like family.\",\"pp_display_conditions\":[{\"_id\":\"42888ff\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"acb9938\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"df21bda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b52deb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"88f3369\"}],\"pp_display_conditions\":[{\"_id\":\"ea95ec2\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0ea714\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/Payment-Options.jpeg\",\"id\":439,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b50c765\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F6F6F6\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b23a45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/2150216370-1.jpg\",\"id\":454,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"aaf4d53\"}],\"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\"},{\"id\":\"4faab94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/essie\\/wp-content\\/uploads\\/2026\\/07\\/svgexport-15-2026-07-11T155603.378.svg\",\"id\":329},\"library\":\"svg\"},\"title_text\":\"Making Every Touch Loving\",\"description_text\":\"\",\"title_size\":\"h6\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":28,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":272,\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":128,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":32,\"unit\":\"px\"},\"_offset_y_end_tablet\":{\"size\":85,\"unit\":\"px\"},\"pp_display_conditions\":[{\"_id\":\"f8e12b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#F0F5FA42\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#49464614\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6236, 517, '_elementor_page_settings', 'a:0:{}');

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

--
-- Table structure for table `wpe_posts`
--

CREATE TABLE `wpe_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 `wpe_posts`
--

INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 05:37:19', '2026-07-11 05:37:19', '<!-- 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-07-11 05:37:19', '2026-07-11 05:37:19', '', 0, 'https://mrarif.me/essie/?p=1', 0, 'post', '', 1),
(2, 1, '2026-07-11 05:37:19', '2026-07-11 05:37:19', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/essie/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-07-11 05:37:19', '2026-07-11 05:37:19', '', 0, 'https://mrarif.me/essie/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-07-11 05:37:19', '2026-07-11 05:37:19', '<!-- 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/essie.</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-07-11 05:37:19', '2026-07-11 05:37:19', '', 0, 'https://mrarif.me/essie/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-07-11 05:37:20', '2026-07-11 05:37:20', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-07-11 05:37:20', '2026-07-11 05:37:20', '', 0, 'https://mrarif.me/essie/index.php/2026/07/11/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2026-07-11 05:37:55', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2026-07-11 05:37:55', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/essie/?p=5', 0, 'post', '', 0),
(6, 1, '2026-07-11 05:38:30', '2026-07-11 05:38:30', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-07-11 11:59:18', '2026-07-11 11:59:18', '', 0, 'https://mrarif.me/essie/?p=6', 0, 'elementor_library', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(10, 1, '2026-07-11 05:42:22', '2026-07-11 05:42:22', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-07-13 20:17:55', '2026-07-13 20:17:55', '', 0, 'https://mrarif.me/essie/?page_id=10', 0, 'page', '', 0),
(11, 1, '2026-07-11 05:42:22', '2026-07-11 05:42:22', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:42:22', '2026-07-11 05:42:22', '', 10, 'https://mrarif.me/essie/?p=11', 0, 'revision', '', 0),
(12, 1, '2026-07-11 05:42:42', '2026-07-11 05:42:42', '', 'About Us', '', 'trash', 'closed', 'closed', '', 'about-us__trashed', '', '', '2026-07-11 11:21:16', '2026-07-11 11:21:16', '', 0, 'https://mrarif.me/essie/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-07-11 05:42:42', '2026-07-11 05:42:42', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-11 05:42:42', '2026-07-11 05:42:42', '', 12, 'https://mrarif.me/essie/?p=13', 0, 'revision', '', 0),
(14, 1, '2026-07-11 05:43:09', '2026-07-11 05:43:09', '', 'Services', '', 'trash', 'closed', 'closed', '', 'services__trashed', '', '', '2026-07-11 11:21:22', '2026-07-11 11:21:22', '', 0, 'https://mrarif.me/essie/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-07-11 05:43:09', '2026-07-11 05:43:09', '', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-11 05:43:09', '2026-07-11 05:43:09', '', 14, 'https://mrarif.me/essie/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-07-11 05:43:28', '2026-07-11 05:43:28', '', 'Contact', '', 'trash', 'closed', 'closed', '', 'contact__trashed', '', '', '2026-07-11 11:21:19', '2026-07-11 11:21:19', '', 0, 'https://mrarif.me/essie/?page_id=16', 0, 'page', '', 0),
(17, 1, '2026-07-11 05:43:28', '2026-07-11 05:43:28', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-11 05:43:28', '2026-07-11 05:43:28', '', 16, 'https://mrarif.me/essie/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-07-11 12:19:22', '2026-07-11 05:44:13', ' ', '', '', 'publish', 'closed', 'closed', '', '18', '', '', '2026-07-11 12:19:22', '2026-07-11 12:19:22', '', 0, 'https://mrarif.me/essie/?p=18', 1, 'nav_menu_item', '', 0),
(21, 1, '2026-07-11 05:44:05', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-07-11 05:44:05', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/essie/?p=21', 1, 'nav_menu_item', '', 0),
(505, 1, '2026-07-11 12:19:22', '2026-07-11 11:22:35', '', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2026-07-11 12:19:22', '2026-07-11 12:19:22', '', 0, 'https://mrarif.me/essie/?p=505', 2, 'nav_menu_item', '', 0),
(506, 1, '2026-07-11 12:19:22', '2026-07-11 11:22:35', '', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2026-07-11 12:19:22', '2026-07-11 12:19:22', '', 0, 'https://mrarif.me/essie/?p=506', 3, 'nav_menu_item', '', 0),
(24, 1, '2026-07-11 05:47:12', '2026-07-11 05:47:12', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-07-11 05:47:12', '2026-07-11 05:47:12', '', 6, 'https://mrarif.me/essie/?p=24', 0, 'revision', '', 0),
(25, 1, '2026-07-11 05:47:12', '2026-07-11 05:47:12', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-07-11 05:47:12', '2026-07-11 05:47:12', '', 6, 'https://mrarif.me/essie/?p=25', 0, 'revision', '', 0),
(26, 1, '2026-07-11 05:49:13', '2026-07-11 05:49:13', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:49:13', '2026-07-11 05:49:13', '', 10, 'https://mrarif.me/essie/?p=26', 0, 'revision', '', 0),
(27, 1, '2026-07-11 05:49:14', '2026-07-11 05:49:14', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:49:14', '2026-07-11 05:49:14', '', 10, 'https://mrarif.me/essie/?p=27', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(28, 1, '2026-07-11 05:49:14', '2026-07-11 05:49:14', '<h1>Essie\'s Loving Touch</h1>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:49:14', '2026-07-11 05:49:14', '', 10, 'https://mrarif.me/essie/?p=28', 0, 'revision', '', 0),
(29, 1, '2026-07-11 05:53:02', '2026-07-11 05:53:02', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Cormorant Garamond\', serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:53:00\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"300,600italic,700italic\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:53:00\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 71,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:53:00\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '2252604f-b568-4276-affb-c6c8212a4b5d', '', '', '2026-07-11 05:53:02', '2026-07-11 05:53:02', '', 0, 'https://mrarif.me/essie/?p=29', 0, 'customize_changeset', '', 0),
(30, 1, '2026-07-11 05:53:09', '2026-07-11 05:53:09', '<h1>Essie\'s Loving Touch</h1>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:53:09', '2026-07-11 05:53:09', '', 10, 'https://mrarif.me/essie/?p=30', 0, 'revision', '', 0),
(31, 1, '2026-07-11 05:53:09', '2026-07-11 05:53:09', '<h1>Essie\'s Loving Touch</h1>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:53:09', '2026-07-11 05:53:09', '', 10, 'https://mrarif.me/essie/?p=31', 0, 'revision', '', 0),
(32, 1, '2026-07-11 05:53:09', '2026-07-11 05:53:09', '<h1>Essie\'s Loving Touch</h1>					<h2>Essie\'s Loving Touch</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 05:53:09', '2026-07-11 05:53:09', '', 10, 'https://mrarif.me/essie/?p=32', 0, 'revision', '', 0),
(33, 1, '2026-07-11 05:54:17', '2026-07-11 05:54:17', '{\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"700\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 51,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 41,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    },\n    \"astra-settings[font-size-h4]\": {\n        \"value\": {\n            \"desktop\": 35,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 29,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 23,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:54:17\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '8bf9dd0e-7f69-493f-8242-fc17e7c0a833', '', '', '2026-07-11 05:54:17', '2026-07-11 05:54:17', '', 0, 'https://mrarif.me/essie/8bf9dd0e-7f69-493f-8242-fc17e7c0a833/', 0, 'customize_changeset', '', 0),
(34, 1, '2026-07-11 05:55:41', '2026-07-11 05:55:41', '{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Montserrat\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:41\"\n    },\n    \"astra-settings[body-font-variant]\": {\n        \"value\": \"500,200,900\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:41\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:41\"\n    },\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": 17,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:41\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9e65fe0e-de77-42b8-aab6-677ba6128ca4', '', '', '2026-07-11 05:55:41', '2026-07-11 05:55:41', '', 0, 'https://mrarif.me/essie/?p=34', 0, 'customize_changeset', '', 0),
(35, 1, '2026-07-11 05:56:55', '2026-07-11 05:56:55', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:51\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:55:51\"\n    },\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#fece00\",\n                \"#010080\",\n                \"#000a1c\",\n                \"#494646\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:56:55\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#fece00\",\n                    \"#010080\",\n                    \"#000a1c\",\n                    \"#494646\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:56:55\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '96e2a55e-7858-4b01-81e4-3f6480c27914', '', '', '2026-07-11 05:56:55', '2026-07-11 05:56:55', '', 0, 'https://mrarif.me/essie/?p=35', 0, 'customize_changeset', '', 0),
(36, 1, '2026-07-11 05:57:19', '2026-07-11 05:57:19', '{\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-2)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:57:16\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:57:16\"\n    },\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:57:16\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"var(--ast-global-color-1)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 05:57:16\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '8514c19f-286e-423f-b30f-58c9c3bb1c43', '', '', '2026-07-11 05:57:19', '2026-07-11 05:57:19', '', 0, 'https://mrarif.me/essie/?p=36', 0, 'customize_changeset', '', 0),
(63, 1, '2026-07-11 06:30:34', '2026-07-11 06:30:34', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:34', '2026-07-11 06:30:34', '', 10, 'https://mrarif.me/essie/?p=63', 0, 'revision', '', 0),
(43, 1, '2026-07-11 06:22:02', '2026-07-11 06:22:02', '<h1>Essie\'s Loving Touch</h1>					<h2>Essie\'s Loving Touch</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:02', '2026-07-11 06:22:02', '', 10, 'https://mrarif.me/essie/?p=43', 0, 'revision', '', 0),
(44, 1, '2026-07-11 06:22:02', '2026-07-11 06:22:02', '<h1>Essie\'s Loving Touch</h1>					<h2>Essie\'s Loving Touch</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:02', '2026-07-11 06:22:02', '', 10, 'https://mrarif.me/essie/?p=44', 0, 'revision', '', 0),
(40, 1, '2026-07-11 06:21:37', '2026-07-11 06:21:37', '<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n							+200 Google Reviews					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'home2-7-26', '', 'publish', 'closed', 'closed', '', 'home2-7-26', '', '', '2026-07-11 06:21:37', '2026-07-11 06:21:37', '', 0, 'https://mrarif.me/essie/?elementor_library=home2-7-26', 0, 'elementor_library', '', 0),
(41, 1, '2026-07-11 06:21:37', '2026-07-11 06:21:37', '<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n							+200 Google Reviews					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'home2-7-26', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2026-07-11 06:21:37', '2026-07-11 06:21:37', '', 40, 'https://mrarif.me/essie/?p=41', 0, 'revision', '', 0),
(57, 1, '2026-07-11 06:29:32', '2026-07-11 06:29:32', '<h1>Welcome to Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:29:32', '2026-07-11 06:29:32', '', 10, 'https://mrarif.me/essie/?p=57', 0, 'revision', '', 0),
(48, 1, '2026-07-11 06:22:40', '2026-07-11 06:22:40', '<h2>Welcome to</h2>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:40', '2026-07-11 06:22:40', '', 10, 'https://mrarif.me/essie/?p=48', 0, 'revision', '', 0),
(45, 1, '2026-07-11 06:22:02', '2026-07-11 06:22:02', '<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n							+200 Google Reviews					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:02', '2026-07-11 06:22:02', '', 10, 'https://mrarif.me/essie/?p=45', 0, 'revision', '', 0),
(46, 1, '2026-07-11 06:22:39', '2026-07-11 06:22:39', '<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n							+200 Google Reviews					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:39', '2026-07-11 06:22:39', '', 10, 'https://mrarif.me/essie/?p=46', 0, 'revision', '', 0),
(47, 1, '2026-07-11 06:22:39', '2026-07-11 06:22:39', '<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n							+200 Google Reviews					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:22:39', '2026-07-11 06:22:39', '', 10, 'https://mrarif.me/essie/?p=47', 0, 'revision', '', 0),
(49, 1, '2026-07-11 06:25:49', '2026-07-11 06:25:49', '<h2>Welcome to</h2>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:25:49', '2026-07-11 06:25:49', '', 10, 'https://mrarif.me/essie/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-07-11 06:25:49', '2026-07-11 06:25:49', '<h2>Welcome to</h2>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:25:49', '2026-07-11 06:25:49', '', 10, 'https://mrarif.me/essie/?p=50', 0, 'revision', '', 0),
(51, 1, '2026-07-11 06:25:50', '2026-07-11 06:25:50', '<h6>Welcome to</h6>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:25:50', '2026-07-11 06:25:50', '', 10, 'https://mrarif.me/essie/?p=51', 0, 'revision', '', 0),
(52, 1, '2026-07-11 06:28:03', '2026-07-11 06:28:03', '<h6>Welcome to</h6>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:28:03', '2026-07-11 06:28:03', '', 10, 'https://mrarif.me/essie/?p=52', 0, 'revision', '', 0),
(53, 1, '2026-07-11 06:28:03', '2026-07-11 06:28:03', '<h6>Welcome to</h6>					<h1>Redi Urgent Care</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:28:03', '2026-07-11 06:28:03', '', 10, 'https://mrarif.me/essie/?p=53', 0, 'revision', '', 0),
(54, 1, '2026-07-11 06:28:04', '2026-07-11 06:28:04', '<h6>Welcome to</h6>					<h1>Essie\'s Loving Touch</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:28:04', '2026-07-11 06:28:04', '', 10, 'https://mrarif.me/essie/?p=54', 0, 'revision', '', 0),
(55, 1, '2026-07-11 06:29:31', '2026-07-11 06:29:31', '<h6>Welcome to</h6>					<h1>Essie\'s Loving Touch</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:29:31', '2026-07-11 06:29:31', '', 10, 'https://mrarif.me/essie/?p=55', 0, 'revision', '', 0),
(56, 1, '2026-07-11 06:29:31', '2026-07-11 06:29:31', '<h6>Welcome to</h6>					<h1>Essie\'s Loving Touch</h1>		Redi Urgent offers a variety of services and treatments that will save you a visit to the hospital. We welcome walk-ins, so come in at your own convenience!					<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.870281,-75.354125&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=1936%20MacDade%20Boulevard%20%2325%20Woodlyn%2C%20PA%2019094%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Adderess: 1936 Macdade BLVD unit 25, Woodlyn PA 19094\n											</a>\n									</li>\n						</ul>\n												<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:29:31', '2026-07-11 06:29:31', '', 10, 'https://mrarif.me/essie/?p=56', 0, 'revision', '', 0),
(58, 1, '2026-07-11 06:30:07', '2026-07-11 06:30:07', '<h1>Welcome to Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:07', '2026-07-11 06:30:07', '', 10, 'https://mrarif.me/essie/?p=58', 0, 'revision', '', 0),
(59, 1, '2026-07-11 06:30:08', '2026-07-11 06:30:08', '<h1>Welcome to Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:08', '2026-07-11 06:30:08', '', 10, 'https://mrarif.me/essie/?p=59', 0, 'revision', '', 0),
(60, 1, '2026-07-11 06:30:08', '2026-07-11 06:30:08', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:08', '2026-07-11 06:30:08', '', 10, 'https://mrarif.me/essie/?p=60', 0, 'revision', '', 0),
(61, 1, '2026-07-11 06:30:33', '2026-07-11 06:30:33', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:33', '2026-07-11 06:30:33', '', 10, 'https://mrarif.me/essie/?p=61', 0, 'revision', '', 0),
(62, 1, '2026-07-11 06:30:33', '2026-07-11 06:30:33', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n														<a href=\"https://mrarif.me/rediurgentcare/patient-portal/\">\n									see our patient results\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:30:33', '2026-07-11 06:30:33', '', 10, 'https://mrarif.me/essie/?p=62', 0, 'revision', '', 0),
(64, 1, '2026-07-11 06:31:31', '2026-07-11 06:31:31', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:31', '2026-07-11 06:31:31', '', 10, 'https://mrarif.me/essie/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-07-11 06:31:31', '2026-07-11 06:31:31', '<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:31', '2026-07-11 06:31:31', '', 10, 'https://mrarif.me/essie/?p=65', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(66, 1, '2026-07-11 06:31:32', '2026-07-11 06:31:32', '<h6>Welcome to </h6>					<h1>Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:32', '2026-07-11 06:31:32', '', 10, 'https://mrarif.me/essie/?p=66', 0, 'revision', '', 0),
(67, 1, '2026-07-11 06:31:56', '2026-07-11 06:31:56', '<h6>Welcome to </h6>					<h1>Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:56', '2026-07-11 06:31:56', '', 10, 'https://mrarif.me/essie/?p=67', 0, 'revision', '', 0),
(68, 1, '2026-07-11 06:31:56', '2026-07-11 06:31:56', '<h6>Welcome to </h6>					<h1>Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:56', '2026-07-11 06:31:56', '', 10, 'https://mrarif.me/essie/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-07-11 06:31:56', '2026-07-11 06:31:56', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:31:56', '2026-07-11 06:31:56', '', 10, 'https://mrarif.me/essie/?p=69', 0, 'revision', '', 0),
(70, 1, '2026-07-11 06:34:11', '2026-07-11 06:34:11', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:11', '2026-07-11 06:34:11', '', 10, 'https://mrarif.me/essie/?p=70', 0, 'revision', '', 0),
(71, 1, '2026-07-11 06:34:11', '2026-07-11 06:34:11', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:11', '2026-07-11 06:34:11', '', 10, 'https://mrarif.me/essie/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-07-11 06:34:11', '2026-07-11 06:34:11', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:11', '2026-07-11 06:34:11', '', 10, 'https://mrarif.me/essie/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-07-11 06:34:29', '2026-07-11 06:34:29', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:29', '2026-07-11 06:34:29', '', 10, 'https://mrarif.me/essie/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-07-11 06:34:29', '2026-07-11 06:34:29', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:29', '2026-07-11 06:34:29', '', 10, 'https://mrarif.me/essie/?p=74', 0, 'revision', '', 0),
(75, 1, '2026-07-11 06:34:29', '2026-07-11 06:34:29', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:34:29', '2026-07-11 06:34:29', '', 10, 'https://mrarif.me/essie/?p=75', 0, 'revision', '', 0),
(76, 1, '2026-07-11 06:40:23', '2026-07-11 06:40:23', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:40:23', '2026-07-11 06:40:23', '', 10, 'https://mrarif.me/essie/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-07-11 06:40:23', '2026-07-11 06:40:23', '<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:40:23', '2026-07-11 06:40:23', '', 10, 'https://mrarif.me/essie/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-07-11 06:40:23', '2026-07-11 06:40:23', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:40:23', '2026-07-11 06:40:23', '', 10, 'https://mrarif.me/essie/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-07-11 06:46:17', '2026-07-11 06:46:17', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:46:17', '2026-07-11 06:46:17', '', 10, 'https://mrarif.me/essie/?p=79', 0, 'revision', '', 0),
(80, 1, '2026-07-11 06:46:17', '2026-07-11 06:46:17', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:46:17', '2026-07-11 06:46:17', '', 10, 'https://mrarif.me/essie/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-07-11 06:46:18', '2026-07-11 06:46:18', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:46:18', '2026-07-11 06:46:18', '', 10, 'https://mrarif.me/essie/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-07-11 06:48:32', '2026-07-11 06:48:32', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:48:32', '2026-07-11 06:48:32', '', 10, 'https://mrarif.me/essie/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-07-11 06:48:32', '2026-07-11 06:48:32', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:48:32', '2026-07-11 06:48:32', '', 10, 'https://mrarif.me/essie/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-07-11 06:48:32', '2026-07-11 06:48:32', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:48:32', '2026-07-11 06:48:32', '', 10, 'https://mrarif.me/essie/?p=84', 0, 'revision', '', 0),
(86, 1, '2026-07-11 06:50:07', '2026-07-11 06:50:07', '', 'banner (29)', '', 'inherit', 'closed', 'closed', '', 'banner-29', '', '', '2026-07-11 06:50:07', '2026-07-11 06:50:07', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png', 0, 'attachment', 'image/png', 0),
(111, 1, '2026-07-11 06:55:23', '2026-07-11 06:55:23', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:23', '2026-07-11 06:55:23', '', 10, 'https://mrarif.me/essie/?p=111', 0, 'revision', '', 0),
(90, 1, '2026-07-11 06:52:47', '2026-07-11 06:52:47', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:52:47', '2026-07-11 06:52:47', '', 10, 'https://mrarif.me/essie/?p=90', 0, 'revision', '', 0),
(88, 1, '2026-07-11 06:52:47', '2026-07-11 06:52:47', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:52:47', '2026-07-11 06:52:47', '', 10, 'https://mrarif.me/essie/?p=88', 0, 'revision', '', 0),
(89, 1, '2026-07-11 06:52:47', '2026-07-11 06:52:47', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:52:47', '2026-07-11 06:52:47', '', 10, 'https://mrarif.me/essie/?p=89', 0, 'revision', '', 0),
(91, 1, '2026-07-11 06:53:42', '2026-07-11 06:53:42', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:53:42', '2026-07-11 06:53:42', '', 10, 'https://mrarif.me/essie/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-07-11 06:53:42', '2026-07-11 06:53:42', '<h1>Welcome to  Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:53:42', '2026-07-11 06:53:42', '', 10, 'https://mrarif.me/essie/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-07-11 06:53:42', '2026-07-11 06:53:42', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:53:42', '2026-07-11 06:53:42', '', 10, 'https://mrarif.me/essie/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-07-11 06:54:09', '2026-07-11 06:54:09', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:09', '2026-07-11 06:54:09', '', 10, 'https://mrarif.me/essie/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-07-11 06:54:09', '2026-07-11 06:54:09', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:09', '2026-07-11 06:54:09', '', 10, 'https://mrarif.me/essie/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-07-11 06:54:09', '2026-07-11 06:54:09', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:09', '2026-07-11 06:54:09', '', 10, 'https://mrarif.me/essie/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-07-11 06:54:24', '2026-07-11 06:54:24', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:24', '2026-07-11 06:54:24', '', 10, 'https://mrarif.me/essie/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-07-11 06:54:24', '2026-07-11 06:54:24', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:24', '2026-07-11 06:54:24', '', 10, 'https://mrarif.me/essie/?p=98', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(99, 1, '2026-07-11 06:54:25', '2026-07-11 06:54:25', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:25', '2026-07-11 06:54:25', '', 10, 'https://mrarif.me/essie/?p=99', 0, 'revision', '', 0),
(100, 1, '2026-07-11 06:54:44', '2026-07-11 06:54:44', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:44', '2026-07-11 06:54:44', '', 10, 'https://mrarif.me/essie/?p=100', 0, 'revision', '', 0),
(101, 1, '2026-07-11 06:54:44', '2026-07-11 06:54:44', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:44', '2026-07-11 06:54:44', '', 10, 'https://mrarif.me/essie/?p=101', 0, 'revision', '', 0),
(102, 1, '2026-07-11 06:54:45', '2026-07-11 06:54:45', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:45', '2026-07-11 06:54:45', '', 10, 'https://mrarif.me/essie/?p=102', 0, 'revision', '', 0),
(103, 1, '2026-07-11 06:54:53', '2026-07-11 06:54:53', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:53', '2026-07-11 06:54:53', '', 10, 'https://mrarif.me/essie/?p=103', 0, 'revision', '', 0),
(104, 1, '2026-07-11 06:54:53', '2026-07-11 06:54:53', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:53', '2026-07-11 06:54:53', '', 10, 'https://mrarif.me/essie/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-07-11 06:54:54', '2026-07-11 06:54:54', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:54:54', '2026-07-11 06:54:54', '', 10, 'https://mrarif.me/essie/?p=105', 0, 'revision', '', 0),
(106, 1, '2026-07-11 06:55:14', '2026-07-11 06:55:14', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:14', '2026-07-11 06:55:14', '', 10, 'https://mrarif.me/essie/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-07-11 06:55:14', '2026-07-11 06:55:14', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:14', '2026-07-11 06:55:14', '', 10, 'https://mrarif.me/essie/?p=107', 0, 'revision', '', 0),
(108, 1, '2026-07-11 06:55:14', '2026-07-11 06:55:14', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:14', '2026-07-11 06:55:14', '', 10, 'https://mrarif.me/essie/?p=108', 0, 'revision', '', 0),
(109, 1, '2026-07-11 06:55:23', '2026-07-11 06:55:23', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:23', '2026-07-11 06:55:23', '', 10, 'https://mrarif.me/essie/?p=109', 0, 'revision', '', 0),
(110, 1, '2026-07-11 06:55:23', '2026-07-11 06:55:23', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png			<h1>Welcome to Essie\'s <br>Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:55:23', '2026-07-11 06:55:23', '', 10, 'https://mrarif.me/essie/?p=110', 0, 'revision', '', 0),
(112, 1, '2026-07-11 06:56:42', '2026-07-11 06:56:42', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Jost\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 06:56:42\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"600\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 06:56:42\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"300,600,900\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 06:56:42\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '6834fde5-5034-4ce4-8e6f-43f470d044a7', '', '', '2026-07-11 06:56:42', '2026-07-11 06:56:42', '', 0, 'https://mrarif.me/essie/6834fde5-5034-4ce4-8e6f-43f470d044a7/', 0, 'customize_changeset', '', 0),
(113, 1, '2026-07-11 06:57:11', '2026-07-11 06:57:11', '{\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"700\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-11 06:57:11\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9acad342-6100-40bc-9960-a03f5cb6443f', '', '', '2026-07-11 06:57:11', '2026-07-11 06:57:11', '', 0, 'https://mrarif.me/essie/9acad342-6100-40bc-9960-a03f5cb6443f/', 0, 'customize_changeset', '', 0),
(114, 1, '2026-07-11 06:58:23', '2026-07-11 06:58:23', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:23', '2026-07-11 06:58:23', '', 10, 'https://mrarif.me/essie/?p=114', 0, 'revision', '', 0),
(115, 1, '2026-07-11 06:58:23', '2026-07-11 06:58:23', '<h1>Welcome to  Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:23', '2026-07-11 06:58:23', '', 10, 'https://mrarif.me/essie/?p=115', 0, 'revision', '', 0),
(116, 1, '2026-07-11 06:58:24', '2026-07-11 06:58:24', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:24', '2026-07-11 06:58:24', '', 10, 'https://mrarif.me/essie/?p=116', 0, 'revision', '', 0),
(117, 1, '2026-07-11 06:58:44', '2026-07-11 06:58:44', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:44', '2026-07-11 06:58:44', '', 10, 'https://mrarif.me/essie/?p=117', 0, 'revision', '', 0),
(118, 1, '2026-07-11 06:58:44', '2026-07-11 06:58:44', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:44', '2026-07-11 06:58:44', '', 10, 'https://mrarif.me/essie/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-07-11 06:58:44', '2026-07-11 06:58:44', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:58:44', '2026-07-11 06:58:44', '', 10, 'https://mrarif.me/essie/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-07-11 06:59:00', '2026-07-11 06:59:00', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:59:00', '2026-07-11 06:59:00', '', 10, 'https://mrarif.me/essie/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-07-11 06:59:00', '2026-07-11 06:59:00', '<h2>Welcome to </h2>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:59:00', '2026-07-11 06:59:00', '', 10, 'https://mrarif.me/essie/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-07-11 06:59:01', '2026-07-11 06:59:01', '<h5>Welcome to </h5>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 06:59:01', '2026-07-11 06:59:01', '', 10, 'https://mrarif.me/essie/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-07-11 07:05:53', '2026-07-11 07:05:53', '<h5>Welcome to </h5>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:05:53', '2026-07-11 07:05:53', '', 10, 'https://mrarif.me/essie/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-07-11 07:05:53', '2026-07-11 07:05:53', '<h5>Welcome to </h5>					<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:05:53', '2026-07-11 07:05:53', '', 10, 'https://mrarif.me/essie/?p=124', 0, 'revision', '', 0),
(125, 1, '2026-07-11 07:05:54', '2026-07-11 07:05:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:05:54', '2026-07-11 07:05:54', '', 10, 'https://mrarif.me/essie/?p=125', 0, 'revision', '', 0),
(126, 1, '2026-07-11 07:08:44', '2026-07-11 07:08:44', '', 'banner (78)', '', 'inherit', 'closed', 'closed', '', 'banner-78', '', '', '2026-07-11 07:08:44', '2026-07-11 07:08:44', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/banner-78.jpg', 0, 'attachment', 'image/jpeg', 0),
(131, 1, '2026-07-11 07:10:30', '2026-07-11 07:10:30', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-82.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:10:30', '2026-07-11 07:10:30', '', 10, 'https://mrarif.me/essie/?p=131', 0, 'revision', '', 0),
(133, 1, '2026-07-11 07:11:55', '2026-07-11 07:11:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-82.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:11:55', '2026-07-11 07:11:55', '', 10, 'https://mrarif.me/essie/?p=133', 0, 'revision', '', 0),
(129, 1, '2026-07-11 07:10:29', '2026-07-11 07:10:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:10:29', '2026-07-11 07:10:29', '', 10, 'https://mrarif.me/essie/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-07-11 07:10:29', '2026-07-11 07:10:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:10:29', '2026-07-11 07:10:29', '', 10, 'https://mrarif.me/essie/?p=130', 0, 'revision', '', 0),
(132, 1, '2026-07-11 07:11:47', '2026-07-11 07:11:47', '', 'banner (83) (1)', '', 'inherit', 'closed', 'closed', '', 'banner-83-1', '', '', '2026-07-11 07:11:47', '2026-07-11 07:11:47', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(134, 1, '2026-07-11 07:11:55', '2026-07-11 07:11:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-82.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:11:55', '2026-07-11 07:11:55', '', 10, 'https://mrarif.me/essie/?p=134', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(179, 1, '2026-07-11 07:49:18', '2026-07-11 07:49:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:49:18', '2026-07-11 07:49:18', '', 10, 'https://mrarif.me/essie/?p=179', 0, 'revision', '', 0),
(135, 1, '2026-07-11 07:11:56', '2026-07-11 07:11:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:11:56', '2026-07-11 07:11:56', '', 10, 'https://mrarif.me/essie/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-07-11 07:16:27', '2026-07-11 07:16:27', '<ul>\n							<li>\n											<a href=\"tel:8774801449\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										(877) 480-1449\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:Essieslovingtouch@gmail.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										Essieslovingtouch@gmail.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'publish', 'closed', 'closed', '', 'elementor-header-136', '', '', '2026-07-13 10:49:08', '2026-07-13 10:49:08', '', 0, 'https://mrarif.me/essie/?post_type=elementor_library&#038;p=136', 0, 'elementor_library', '', 0),
(137, 1, '2026-07-11 07:12:56', '2026-07-11 07:12:56', '', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:12:56', '2026-07-11 07:12:56', '', 136, 'https://mrarif.me/essie/?p=137', 0, 'revision', '', 0),
(138, 1, '2026-07-11 07:19:43', '2026-07-11 07:19:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:19:43', '2026-07-11 07:19:43', '', 10, 'https://mrarif.me/essie/?p=138', 0, 'revision', '', 0),
(139, 1, '2026-07-11 07:19:43', '2026-07-11 07:19:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:19:43', '2026-07-11 07:19:43', '', 10, 'https://mrarif.me/essie/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-07-11 07:19:43', '2026-07-11 07:19:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:19:43', '2026-07-11 07:19:43', '', 10, 'https://mrarif.me/essie/?p=140', 0, 'revision', '', 0),
(141, 1, '2026-07-11 07:20:34', '2026-07-11 07:20:34', '', 'call_1034131', '', 'inherit', 'closed', 'closed', '', 'call_1034131', '', '', '2026-07-11 07:20:34', '2026-07-11 07:20:34', '', 136, 'https://mrarif.me/essie/wp-content/uploads/2026/07/call_1034131.svg', 0, 'attachment', 'image/svg+xml', 0),
(142, 1, '2026-07-11 07:21:13', '2026-07-11 07:21:13', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										List Item #1\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:21:13', '2026-07-11 07:21:13', '', 136, 'https://mrarif.me/essie/?p=142', 0, 'revision', '', 0),
(143, 1, '2026-07-11 07:21:14', '2026-07-11 07:21:14', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										List Item #1\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:21:14', '2026-07-11 07:21:14', '', 136, 'https://mrarif.me/essie/?p=143', 0, 'revision', '', 0),
(146, 1, '2026-07-11 07:22:10', '2026-07-11 07:22:10', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:22:10', '2026-07-11 07:22:10', '', 136, 'https://mrarif.me/essie/?p=146', 0, 'revision', '', 0),
(144, 1, '2026-07-11 07:21:33', '2026-07-11 07:21:33', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:21:33', '2026-07-11 07:21:33', '', 136, 'https://mrarif.me/essie/?p=144', 0, 'revision', '', 0),
(145, 1, '2026-07-11 07:22:05', '2026-07-11 07:22:05', '', 'email_3894024', '', 'inherit', 'closed', 'closed', '', 'email_3894024', '', '', '2026-07-11 07:22:05', '2026-07-11 07:22:05', '', 136, 'https://mrarif.me/essie/wp-content/uploads/2026/07/email_3894024.svg', 0, 'attachment', 'image/svg+xml', 0),
(147, 1, '2026-07-11 07:22:18', '2026-07-11 07:22:18', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:22:18', '2026-07-11 07:22:18', '', 136, 'https://mrarif.me/essie/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-07-11 07:23:32', '2026-07-11 07:23:32', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:23:32', '2026-07-11 07:23:32', '', 136, 'https://mrarif.me/essie/?p=148', 0, 'revision', '', 0),
(510, 1, '2026-07-11 11:24:12', '2026-07-11 11:24:12', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"http://Payment\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:24:12', '2026-07-11 11:24:12', '', 136, 'https://mrarif.me/essie/?p=510', 0, 'revision', '', 0),
(151, 1, '2026-07-11 07:30:00', '2026-07-11 07:30:00', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:30:00', '2026-07-11 07:30:00', '', 136, 'https://mrarif.me/essie/?p=151', 0, 'revision', '', 0),
(150, 1, '2026-07-11 07:27:15', '2026-07-11 07:27:15', '', 'logo (35)', '', 'inherit', 'closed', 'closed', '', 'logo-35', '', '', '2026-07-11 07:27:15', '2026-07-11 07:27:15', '', 136, 'https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png', 0, 'attachment', 'image/png', 0),
(152, 1, '2026-07-11 07:30:45', '2026-07-11 07:30:45', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:30:45', '2026-07-11 07:30:45', '', 136, 'https://mrarif.me/essie/?p=152', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(153, 1, '2026-07-11 07:31:25', '2026-07-11 07:31:25', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:31:25', '2026-07-11 07:31:25', '', 136, 'https://mrarif.me/essie/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-07-11 07:32:07', '2026-07-11 07:32:07', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:32:07', '2026-07-11 07:32:07', '', 136, 'https://mrarif.me/essie/?p=154', 0, 'revision', '', 0),
(155, 1, '2026-07-11 07:32:28', '2026-07-11 07:32:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:28', '2026-07-11 07:32:28', '', 10, 'https://mrarif.me/essie/?p=155', 0, 'revision', '', 0),
(156, 1, '2026-07-11 07:32:28', '2026-07-11 07:32:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:28', '2026-07-11 07:32:28', '', 10, 'https://mrarif.me/essie/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-07-11 07:32:29', '2026-07-11 07:32:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:29', '2026-07-11 07:32:29', '', 10, 'https://mrarif.me/essie/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-07-11 07:32:45', '2026-07-11 07:32:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:45', '2026-07-11 07:32:45', '', 10, 'https://mrarif.me/essie/?p=158', 0, 'revision', '', 0),
(159, 1, '2026-07-11 07:32:45', '2026-07-11 07:32:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:45', '2026-07-11 07:32:45', '', 10, 'https://mrarif.me/essie/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-07-11 07:32:45', '2026-07-11 07:32:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:32:45', '2026-07-11 07:32:45', '', 10, 'https://mrarif.me/essie/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-07-11 07:33:22', '2026-07-11 07:33:22', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:33:22', '2026-07-11 07:33:22', '', 136, 'https://mrarif.me/essie/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-07-11 07:34:33', '2026-07-11 07:34:33', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:34:33', '2026-07-11 07:34:33', '', 136, 'https://mrarif.me/essie/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-07-11 07:35:10', '2026-07-11 07:35:10', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:35:10', '2026-07-11 07:35:10', '', 136, 'https://mrarif.me/essie/?p=163', 0, 'revision', '', 0),
(164, 1, '2026-07-11 07:35:54', '2026-07-11 07:35:54', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:35:54', '2026-07-11 07:35:54', '', 136, 'https://mrarif.me/essie/?p=164', 0, 'revision', '', 0),
(165, 1, '2026-07-11 07:38:20', '2026-07-11 07:38:20', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:38:20', '2026-07-11 07:38:20', '', 136, 'https://mrarif.me/essie/?p=165', 0, 'revision', '', 0),
(166, 1, '2026-07-11 07:38:41', '2026-07-11 07:38:41', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:38:41', '2026-07-11 07:38:41', '', 136, 'https://mrarif.me/essie/?p=166', 0, 'revision', '', 0),
(167, 1, '2026-07-11 07:39:26', '2026-07-11 07:39:26', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:39:26', '2026-07-11 07:39:26', '', 136, 'https://mrarif.me/essie/?p=167', 0, 'revision', '', 0),
(168, 1, '2026-07-11 07:40:34', '2026-07-11 07:40:34', '', 'fav (23)', '', 'inherit', 'closed', 'closed', '', 'fav-23', '', '', '2026-07-11 07:40:34', '2026-07-11 07:40:34', '', 0, 'https://mrarif.me/essie/wp-content/uploads/2026/07/fav-23.png', 0, 'attachment', 'image/png', 0),
(169, 1, '2026-07-11 07:40:40', '2026-07-11 07:40:40', 'https://mrarif.me/essie/wp-content/uploads/2026/07/cropped-fav-23.png', 'cropped-fav-23.png', '', 'inherit', 'closed', 'closed', '', 'cropped-fav-23-png', '', '', '2026-07-11 07:40:40', '2026-07-11 07:40:40', '', 168, 'https://mrarif.me/essie/wp-content/uploads/2026/07/cropped-fav-23.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(170, 1, '2026-07-11 07:41:06', '2026-07-11 07:41:06', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:41:06', '2026-07-11 07:41:06', '', 136, 'https://mrarif.me/essie/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-07-11 07:41:24', '2026-07-11 07:41:24', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:41:24', '2026-07-11 07:41:24', '', 136, 'https://mrarif.me/essie/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-07-11 07:45:29', '2026-07-11 07:45:29', '', 'right-arrow_10137012', '', 'inherit', 'closed', 'closed', '', 'right-arrow_10137012', '', '', '2026-07-11 07:45:29', '2026-07-11 07:45:29', '', 136, 'https://mrarif.me/essie/wp-content/uploads/2026/07/right-arrow_10137012.svg', 0, 'attachment', 'image/svg+xml', 0),
(173, 1, '2026-07-11 07:45:53', '2026-07-11 07:45:53', '', 'svgexport-15 (59)', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-59', '', '', '2026-07-11 07:45:53', '2026-07-11 07:45:53', '', 136, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-59.svg', 0, 'attachment', 'image/svg+xml', 0),
(176, 1, '2026-07-11 07:46:43', '2026-07-11 07:46:43', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:46:43', '2026-07-11 07:46:43', '', 136, 'https://mrarif.me/essie/?p=176', 0, 'revision', '', 0),
(175, 1, '2026-07-11 07:46:29', '2026-07-11 07:46:29', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" height=\"512\" viewBox=\"0 0 384 384\" width=\"512\"><path d=\"m380.48 183.52-60-60c-4.69-4.69-12.28-4.69-16.97 0s-4.69 12.28 0 16.97l39.52 39.51h-331.03c-6.63 0-12 5.37-12 12s5.37 12 12 12h331.03l-39.52 39.52c-4.69 4.69-4.69 12.28 0 16.97s12.28 4.69 16.97 0l60-60c4.69-4.69 4.69-12.29 0-16.97z\"></path></svg>			\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:46:29', '2026-07-11 07:46:29', '', 136, 'https://mrarif.me/essie/?p=175', 0, 'revision', '', 0),
(174, 1, '2026-07-11 07:46:03', '2026-07-11 07:46:03', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 25 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill=\"#FFFFFF\" fill-rule=\"evenodd\" d=\"M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z\" clip-rule=\"evenodd\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>			\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 07:46:03', '2026-07-11 07:46:03', '', 136, 'https://mrarif.me/essie/?p=174', 0, 'revision', '', 0),
(177, 1, '2026-07-11 07:49:18', '2026-07-11 07:49:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:49:18', '2026-07-11 07:49:18', '', 10, 'https://mrarif.me/essie/?p=177', 0, 'revision', '', 0),
(178, 1, '2026-07-11 07:49:18', '2026-07-11 07:49:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:49:18', '2026-07-11 07:49:18', '', 10, 'https://mrarif.me/essie/?p=178', 0, 'revision', '', 0),
(180, 1, '2026-07-11 07:50:00', '2026-07-11 07:50:00', '', 'bg-1', '', 'inherit', 'closed', 'closed', '', 'bg-1', '', '', '2026-07-11 07:50:00', '2026-07-11 07:50:00', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/bg-1.png', 0, 'attachment', 'image/png', 0),
(181, 1, '2026-07-11 07:50:19', '2026-07-11 07:50:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:50:19', '2026-07-11 07:50:19', '', 10, 'https://mrarif.me/essie/?p=181', 0, 'revision', '', 0),
(182, 1, '2026-07-11 07:50:19', '2026-07-11 07:50:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:50:19', '2026-07-11 07:50:19', '', 10, 'https://mrarif.me/essie/?p=182', 0, 'revision', '', 0),
(183, 1, '2026-07-11 07:50:19', '2026-07-11 07:50:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:50:19', '2026-07-11 07:50:19', '', 10, 'https://mrarif.me/essie/?p=183', 0, 'revision', '', 0),
(184, 1, '2026-07-11 07:53:15', '2026-07-11 07:53:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:53:15', '2026-07-11 07:53:15', '', 10, 'https://mrarif.me/essie/?p=184', 0, 'revision', '', 0),
(185, 1, '2026-07-11 07:53:15', '2026-07-11 07:53:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:53:15', '2026-07-11 07:53:15', '', 10, 'https://mrarif.me/essie/?p=185', 0, 'revision', '', 0),
(186, 1, '2026-07-11 07:53:16', '2026-07-11 07:53:16', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:53:16', '2026-07-11 07:53:16', '', 10, 'https://mrarif.me/essie/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-07-11 07:57:46', '2026-07-11 07:57:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:57:46', '2026-07-11 07:57:46', '', 10, 'https://mrarif.me/essie/?p=187', 0, 'revision', '', 0),
(188, 1, '2026-07-11 07:57:46', '2026-07-11 07:57:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:57:46', '2026-07-11 07:57:46', '', 10, 'https://mrarif.me/essie/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-07-11 07:57:46', '2026-07-11 07:57:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:57:46', '2026-07-11 07:57:46', '', 10, 'https://mrarif.me/essie/?p=189', 0, 'revision', '', 0),
(190, 1, '2026-07-11 07:58:31', '2026-07-11 07:58:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:58:31', '2026-07-11 07:58:31', '', 10, 'https://mrarif.me/essie/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-07-11 07:58:31', '2026-07-11 07:58:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:58:31', '2026-07-11 07:58:31', '', 10, 'https://mrarif.me/essie/?p=191', 0, 'revision', '', 0),
(192, 1, '2026-07-11 07:58:32', '2026-07-11 07:58:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:58:32', '2026-07-11 07:58:32', '', 10, 'https://mrarif.me/essie/?p=192', 0, 'revision', '', 0),
(193, 1, '2026-07-11 07:59:27', '2026-07-11 07:59:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:59:27', '2026-07-11 07:59:27', '', 10, 'https://mrarif.me/essie/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-07-11 07:59:27', '2026-07-11 07:59:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:59:27', '2026-07-11 07:59:27', '', 10, 'https://mrarif.me/essie/?p=194', 0, 'revision', '', 0),
(195, 1, '2026-07-11 07:59:27', '2026-07-11 07:59:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 07:59:27', '2026-07-11 07:59:27', '', 10, 'https://mrarif.me/essie/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-07-11 08:01:04', '2026-07-11 08:01:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:01:04', '2026-07-11 08:01:04', '', 10, 'https://mrarif.me/essie/?p=196', 0, 'revision', '', 0),
(197, 1, '2026-07-11 08:01:04', '2026-07-11 08:01:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:01:04', '2026-07-11 08:01:04', '', 10, 'https://mrarif.me/essie/?p=197', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(198, 1, '2026-07-11 08:01:04', '2026-07-11 08:01:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:01:04', '2026-07-11 08:01:04', '', 10, 'https://mrarif.me/essie/?p=198', 0, 'revision', '', 0),
(199, 1, '2026-07-11 08:05:51', '2026-07-11 08:05:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:05:51', '2026-07-11 08:05:51', '', 10, 'https://mrarif.me/essie/?p=199', 0, 'revision', '', 0),
(200, 1, '2026-07-11 08:05:51', '2026-07-11 08:05:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:05:51', '2026-07-11 08:05:51', '', 10, 'https://mrarif.me/essie/?p=200', 0, 'revision', '', 0),
(201, 1, '2026-07-11 08:05:51', '2026-07-11 08:05:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:05:51', '2026-07-11 08:05:51', '', 10, 'https://mrarif.me/essie/?p=201', 0, 'revision', '', 0),
(202, 1, '2026-07-11 08:06:38', '2026-07-11 08:06:38', '', 'banner (30)', '', 'inherit', 'closed', 'closed', '', 'banner-30', '', '', '2026-07-11 08:06:38', '2026-07-11 08:06:38', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/banner-30.png', 0, 'attachment', 'image/png', 0),
(203, 1, '2026-07-11 08:07:00', '2026-07-11 08:07:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:00', '2026-07-11 08:07:00', '', 10, 'https://mrarif.me/essie/?p=203', 0, 'revision', '', 0),
(204, 1, '2026-07-11 08:07:00', '2026-07-11 08:07:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:00', '2026-07-11 08:07:00', '', 10, 'https://mrarif.me/essie/?p=204', 0, 'revision', '', 0),
(205, 1, '2026-07-11 08:07:00', '2026-07-11 08:07:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:00', '2026-07-11 08:07:00', '', 10, 'https://mrarif.me/essie/?p=205', 0, 'revision', '', 0),
(206, 1, '2026-07-11 08:07:18', '2026-07-11 08:07:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:18', '2026-07-11 08:07:18', '', 10, 'https://mrarif.me/essie/?p=206', 0, 'revision', '', 0),
(207, 1, '2026-07-11 08:07:18', '2026-07-11 08:07:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:18', '2026-07-11 08:07:18', '', 10, 'https://mrarif.me/essie/?p=207', 0, 'revision', '', 0),
(208, 1, '2026-07-11 08:07:18', '2026-07-11 08:07:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:07:18', '2026-07-11 08:07:18', '', 10, 'https://mrarif.me/essie/?p=208', 0, 'revision', '', 0),
(209, 1, '2026-07-11 08:08:31', '2026-07-11 08:08:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:08:31', '2026-07-11 08:08:31', '', 10, 'https://mrarif.me/essie/?p=209', 0, 'revision', '', 0),
(210, 1, '2026-07-11 08:08:31', '2026-07-11 08:08:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:08:31', '2026-07-11 08:08:31', '', 10, 'https://mrarif.me/essie/?p=210', 0, 'revision', '', 0),
(211, 1, '2026-07-11 08:08:31', '2026-07-11 08:08:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:08:31', '2026-07-11 08:08:31', '', 10, 'https://mrarif.me/essie/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-07-11 08:09:49', '2026-07-11 08:09:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:09:49', '2026-07-11 08:09:49', '', 10, 'https://mrarif.me/essie/?p=212', 0, 'revision', '', 0),
(213, 1, '2026-07-11 08:09:49', '2026-07-11 08:09:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:09:49', '2026-07-11 08:09:49', '', 10, 'https://mrarif.me/essie/?p=213', 0, 'revision', '', 0),
(214, 1, '2026-07-11 08:09:49', '2026-07-11 08:09:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:09:49', '2026-07-11 08:09:49', '', 10, 'https://mrarif.me/essie/?p=214', 0, 'revision', '', 0),
(215, 1, '2026-07-11 08:10:56', '2026-07-11 08:10:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:10:56', '2026-07-11 08:10:56', '', 10, 'https://mrarif.me/essie/?p=215', 0, 'revision', '', 0),
(216, 1, '2026-07-11 08:10:56', '2026-07-11 08:10:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:10:56', '2026-07-11 08:10:56', '', 10, 'https://mrarif.me/essie/?p=216', 0, 'revision', '', 0),
(217, 1, '2026-07-11 08:10:56', '2026-07-11 08:10:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:10:56', '2026-07-11 08:10:56', '', 10, 'https://mrarif.me/essie/?p=217', 0, 'revision', '', 0),
(218, 1, '2026-07-11 08:11:48', '2026-07-11 08:11:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:11:48', '2026-07-11 08:11:48', '', 10, 'https://mrarif.me/essie/?p=218', 0, 'revision', '', 0),
(219, 1, '2026-07-11 08:11:48', '2026-07-11 08:11:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:11:48', '2026-07-11 08:11:48', '', 10, 'https://mrarif.me/essie/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-07-11 08:11:48', '2026-07-11 08:11:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:11:48', '2026-07-11 08:11:48', '', 10, 'https://mrarif.me/essie/?p=220', 0, 'revision', '', 0),
(221, 1, '2026-07-11 08:12:49', '2026-07-11 08:12:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:12:49', '2026-07-11 08:12:49', '', 10, 'https://mrarif.me/essie/?p=221', 0, 'revision', '', 0),
(222, 1, '2026-07-11 08:12:49', '2026-07-11 08:12:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:12:49', '2026-07-11 08:12:49', '', 10, 'https://mrarif.me/essie/?p=222', 0, 'revision', '', 0),
(223, 1, '2026-07-11 08:12:49', '2026-07-11 08:12:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:12:49', '2026-07-11 08:12:49', '', 10, 'https://mrarif.me/essie/?p=223', 0, 'revision', '', 0),
(224, 1, '2026-07-11 08:14:09', '2026-07-11 08:14:09', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:09', '2026-07-11 08:14:09', '', 10, 'https://mrarif.me/essie/?p=224', 0, 'revision', '', 0),
(225, 1, '2026-07-11 08:14:09', '2026-07-11 08:14:09', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:09', '2026-07-11 08:14:09', '', 10, 'https://mrarif.me/essie/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-07-11 08:14:09', '2026-07-11 08:14:09', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:09', '2026-07-11 08:14:09', '', 10, 'https://mrarif.me/essie/?p=226', 0, 'revision', '', 0),
(227, 1, '2026-07-11 08:14:40', '2026-07-11 08:14:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:40', '2026-07-11 08:14:40', '', 10, 'https://mrarif.me/essie/?p=227', 0, 'revision', '', 0),
(228, 1, '2026-07-11 08:14:40', '2026-07-11 08:14:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:40', '2026-07-11 08:14:40', '', 10, 'https://mrarif.me/essie/?p=228', 0, 'revision', '', 0),
(229, 1, '2026-07-11 08:14:40', '2026-07-11 08:14:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:14:40', '2026-07-11 08:14:40', '', 10, 'https://mrarif.me/essie/?p=229', 0, 'revision', '', 0),
(230, 1, '2026-07-11 08:15:10', '2026-07-11 08:15:10', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:15:10', '2026-07-11 08:15:10', '', 10, 'https://mrarif.me/essie/?p=230', 0, 'revision', '', 0),
(231, 1, '2026-07-11 08:15:10', '2026-07-11 08:15:10', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:15:10', '2026-07-11 08:15:10', '', 10, 'https://mrarif.me/essie/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-07-11 08:15:11', '2026-07-11 08:15:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:15:11', '2026-07-11 08:15:11', '', 10, 'https://mrarif.me/essie/?p=232', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 08:16:45', '2026-07-11 08:16:45', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:16:45', '2026-07-11 08:16:45', '', 136, 'https://mrarif.me/essie/?p=233', 0, 'revision', '', 0),
(234, 1, '2026-07-11 08:17:03', '2026-07-11 08:17:03', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:17:03', '2026-07-11 08:17:03', '', 136, 'https://mrarif.me/essie/?p=234', 0, 'revision', '', 0),
(235, 1, '2026-07-11 08:17:43', '2026-07-11 08:17:43', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:17:43', '2026-07-11 08:17:43', '', 136, 'https://mrarif.me/essie/?p=235', 0, 'revision', '', 0),
(236, 1, '2026-07-11 08:36:53', '2026-07-11 08:36:53', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:36:53', '2026-07-11 08:36:53', '', 10, 'https://mrarif.me/essie/?p=236', 0, 'revision', '', 0),
(237, 1, '2026-07-11 08:36:54', '2026-07-11 08:36:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a role=\"button\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:36:54', '2026-07-11 08:36:54', '', 10, 'https://mrarif.me/essie/?p=237', 0, 'revision', '', 0),
(247, 1, '2026-07-11 09:03:19', '2026-07-11 09:03:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:03:19', '2026-07-11 09:03:19', '', 10, 'https://mrarif.me/essie/?p=247', 0, 'revision', '', 0),
(238, 1, '2026-07-11 08:36:55', '2026-07-11 08:36:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 08:36:55', '2026-07-11 08:36:55', '', 10, 'https://mrarif.me/essie/?p=238', 0, 'revision', '', 0),
(239, 1, '2026-07-11 08:55:46', '2026-07-11 08:55:46', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:55:46', '2026-07-11 08:55:46', '', 136, 'https://mrarif.me/essie/?p=239', 0, 'revision', '', 0),
(240, 1, '2026-07-11 08:56:07', '2026-07-11 08:56:07', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:56:07', '2026-07-11 08:56:07', '', 136, 'https://mrarif.me/essie/?p=240', 0, 'revision', '', 0),
(241, 1, '2026-07-11 08:59:14', '2026-07-11 08:59:14', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Elementor Header #136', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 08:59:14', '2026-07-11 08:59:14', '', 136, 'https://mrarif.me/essie/?p=241', 0, 'revision', '', 0),
(242, 1, '2026-07-11 09:00:43', '2026-07-11 09:00:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:00:43', '2026-07-11 09:00:43', '', 10, 'https://mrarif.me/essie/?p=242', 0, 'revision', '', 0),
(243, 1, '2026-07-11 09:00:43', '2026-07-11 09:00:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:00:43', '2026-07-11 09:00:43', '', 10, 'https://mrarif.me/essie/?p=243', 0, 'revision', '', 0),
(244, 1, '2026-07-11 09:00:43', '2026-07-11 09:00:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:00:43', '2026-07-11 09:00:43', '', 10, 'https://mrarif.me/essie/?p=244', 0, 'revision', '', 0),
(245, 1, '2026-07-11 09:03:18', '2026-07-11 09:03:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:03:18', '2026-07-11 09:03:18', '', 10, 'https://mrarif.me/essie/?p=245', 0, 'revision', '', 0),
(246, 1, '2026-07-11 09:03:18', '2026-07-11 09:03:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																<h6>Welcome to </h6>					<h1>Essie\'s Loving <br>Touch</h1>					<h5>Making Every Touch Loving</h5>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://pay.xpress-pay.com/pt/15b452b08022421bb3b2f18c24b07f23\" target=\"_blank\" rel=\"nofollow\">\n									Bill Pay Now\n					</a>\n						https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:03:18', '2026-07-11 09:03:18', '', 10, 'https://mrarif.me/essie/?p=246', 0, 'revision', '', 0),
(248, 1, '2026-07-11 09:05:07', '2026-07-11 09:05:07', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:05:07', '2026-07-11 09:05:07', '', 10, 'https://mrarif.me/essie/?p=248', 0, 'revision', '', 0),
(249, 1, '2026-07-11 09:05:07', '2026-07-11 09:05:07', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:05:07', '2026-07-11 09:05:07', '', 10, 'https://mrarif.me/essie/?p=249', 0, 'revision', '', 0),
(250, 1, '2026-07-11 09:05:07', '2026-07-11 09:05:07', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:05:07', '2026-07-11 09:05:07', '', 10, 'https://mrarif.me/essie/?p=250', 0, 'revision', '', 0),
(251, 1, '2026-07-11 09:06:07', '2026-07-11 09:06:07', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-07-11 09:06:07', '2026-07-11 09:06:07', '', 6, 'https://mrarif.me/essie/?p=251', 0, 'revision', '', 0),
(252, 1, '2026-07-11 09:06:34', '2026-07-11 09:06:34', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 09:06:34', '2026-07-11 09:06:34', '', 136, 'https://mrarif.me/essie/?p=252', 0, 'revision', '', 0),
(253, 1, '2026-07-11 09:06:34', '2026-07-11 09:06:34', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"https://mrarif.me/essie/contact/\">\n									Contact\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 09:06:34', '2026-07-11 09:06:34', '', 136, 'https://mrarif.me/essie/?p=253', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(255, 1, '2026-07-11 09:16:46', '2026-07-11 09:16:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:16:46', '2026-07-11 09:16:46', '', 10, 'https://mrarif.me/essie/?p=255', 0, 'revision', '', 0),
(256, 1, '2026-07-11 09:16:46', '2026-07-11 09:16:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:16:46', '2026-07-11 09:16:46', '', 10, 'https://mrarif.me/essie/?p=256', 0, 'revision', '', 0),
(257, 1, '2026-07-11 09:16:46', '2026-07-11 09:16:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:16:46', '2026-07-11 09:16:46', '', 10, 'https://mrarif.me/essie/?p=257', 0, 'revision', '', 0),
(258, 1, '2026-07-11 09:18:06', '2026-07-11 09:18:06', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:18:06', '2026-07-11 09:18:06', '', 10, 'https://mrarif.me/essie/?p=258', 0, 'revision', '', 0),
(259, 1, '2026-07-11 09:18:07', '2026-07-11 09:18:07', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:18:07', '2026-07-11 09:18:07', '', 10, 'https://mrarif.me/essie/?p=259', 0, 'revision', '', 0),
(260, 1, '2026-07-11 09:18:07', '2026-07-11 09:18:07', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:18:07', '2026-07-11 09:18:07', '', 10, 'https://mrarif.me/essie/?p=260', 0, 'revision', '', 0),
(261, 1, '2026-07-11 09:21:48', '2026-07-11 09:21:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:21:48', '2026-07-11 09:21:48', '', 10, 'https://mrarif.me/essie/?p=261', 0, 'revision', '', 0),
(262, 1, '2026-07-11 09:21:49', '2026-07-11 09:21:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:21:49', '2026-07-11 09:21:49', '', 10, 'https://mrarif.me/essie/?p=262', 0, 'revision', '', 0),
(263, 1, '2026-07-11 09:21:49', '2026-07-11 09:21:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:21:49', '2026-07-11 09:21:49', '', 10, 'https://mrarif.me/essie/?p=263', 0, 'revision', '', 0),
(264, 1, '2026-07-11 09:24:26', '2026-07-11 09:24:26', '', 'About Us (3)', '', 'inherit', 'closed', 'closed', '', 'about-us-3', '', '', '2026-07-11 09:24:26', '2026-07-11 09:24:26', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(265, 1, '2026-07-11 09:24:48', '2026-07-11 09:24:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:24:48', '2026-07-11 09:24:48', '', 10, 'https://mrarif.me/essie/?p=265', 0, 'revision', '', 0),
(266, 1, '2026-07-11 09:24:48', '2026-07-11 09:24:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:24:48', '2026-07-11 09:24:48', '', 10, 'https://mrarif.me/essie/?p=266', 0, 'revision', '', 0),
(267, 1, '2026-07-11 09:24:48', '2026-07-11 09:24:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:24:48', '2026-07-11 09:24:48', '', 10, 'https://mrarif.me/essie/?p=267', 0, 'revision', '', 0),
(268, 1, '2026-07-11 09:25:44', '2026-07-11 09:25:44', '', 'about (17)', '', 'inherit', 'closed', 'closed', '', 'about-17', '', '', '2026-07-11 09:25:44', '2026-07-11 09:25:44', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/about-17.jpeg', 0, 'attachment', 'image/jpeg', 0),
(273, 1, '2026-07-11 09:27:21', '2026-07-11 09:27:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:21', '2026-07-11 09:27:21', '', 10, 'https://mrarif.me/essie/?p=273', 0, 'revision', '', 0),
(270, 1, '2026-07-11 09:26:55', '2026-07-11 09:26:55', '', 'about (40) (1)', '', 'inherit', 'closed', 'closed', '', 'about-40-1', '', '', '2026-07-11 09:26:55', '2026-07-11 09:26:55', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(271, 1, '2026-07-11 09:27:21', '2026-07-11 09:27:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:21', '2026-07-11 09:27:21', '', 10, 'https://mrarif.me/essie/?p=271', 0, 'revision', '', 0),
(272, 1, '2026-07-11 09:27:21', '2026-07-11 09:27:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"#\">\n									Click here\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/essie/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:21', '2026-07-11 09:27:21', '', 10, 'https://mrarif.me/essie/?p=272', 0, 'revision', '', 0),
(274, 1, '2026-07-11 09:27:51', '2026-07-11 09:27:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:51', '2026-07-11 09:27:51', '', 10, 'https://mrarif.me/essie/?p=274', 0, 'revision', '', 0),
(275, 1, '2026-07-11 09:27:52', '2026-07-11 09:27:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:52', '2026-07-11 09:27:52', '', 10, 'https://mrarif.me/essie/?p=275', 0, 'revision', '', 0),
(276, 1, '2026-07-11 09:27:52', '2026-07-11 09:27:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:27:52', '2026-07-11 09:27:52', '', 10, 'https://mrarif.me/essie/?p=276', 0, 'revision', '', 0),
(277, 1, '2026-07-11 09:28:33', '2026-07-11 09:28:33', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:28:33', '2026-07-11 09:28:33', '', 10, 'https://mrarif.me/essie/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-07-11 09:28:33', '2026-07-11 09:28:33', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:28:33', '2026-07-11 09:28:33', '', 10, 'https://mrarif.me/essie/?p=278', 0, 'revision', '', 0),
(279, 1, '2026-07-11 09:28:33', '2026-07-11 09:28:33', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:28:33', '2026-07-11 09:28:33', '', 10, 'https://mrarif.me/essie/?p=279', 0, 'revision', '', 0),
(280, 1, '2026-07-11 09:31:19', '2026-07-11 09:31:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:31:19', '2026-07-11 09:31:19', '', 10, 'https://mrarif.me/essie/?p=280', 0, 'revision', '', 0),
(281, 1, '2026-07-11 09:31:19', '2026-07-11 09:31:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:31:19', '2026-07-11 09:31:19', '', 10, 'https://mrarif.me/essie/?p=281', 0, 'revision', '', 0),
(282, 1, '2026-07-11 09:31:19', '2026-07-11 09:31:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:31:19', '2026-07-11 09:31:19', '', 10, 'https://mrarif.me/essie/?p=282', 0, 'revision', '', 0),
(283, 1, '2026-07-11 09:32:11', '2026-07-11 09:32:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:32:11', '2026-07-11 09:32:11', '', 10, 'https://mrarif.me/essie/?p=283', 0, 'revision', '', 0),
(284, 1, '2026-07-11 09:32:11', '2026-07-11 09:32:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:32:11', '2026-07-11 09:32:11', '', 10, 'https://mrarif.me/essie/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 09:32:11', '2026-07-11 09:32:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:32:11', '2026-07-11 09:32:11', '', 10, 'https://mrarif.me/essie/?p=285', 0, 'revision', '', 0),
(286, 1, '2026-07-11 09:33:10', '2026-07-11 09:33:10', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:10', '2026-07-11 09:33:10', '', 10, 'https://mrarif.me/essie/?p=286', 0, 'revision', '', 0),
(287, 1, '2026-07-11 09:33:10', '2026-07-11 09:33:10', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:10', '2026-07-11 09:33:10', '', 10, 'https://mrarif.me/essie/?p=287', 0, 'revision', '', 0),
(288, 1, '2026-07-11 09:33:11', '2026-07-11 09:33:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:11', '2026-07-11 09:33:11', '', 10, 'https://mrarif.me/essie/?p=288', 0, 'revision', '', 0),
(289, 1, '2026-07-11 09:33:44', '2026-07-11 09:33:44', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:44', '2026-07-11 09:33:44', '', 10, 'https://mrarif.me/essie/?p=289', 0, 'revision', '', 0),
(290, 1, '2026-07-11 09:33:45', '2026-07-11 09:33:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:45', '2026-07-11 09:33:45', '', 10, 'https://mrarif.me/essie/?p=290', 0, 'revision', '', 0),
(291, 1, '2026-07-11 09:33:45', '2026-07-11 09:33:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:33:45', '2026-07-11 09:33:45', '', 10, 'https://mrarif.me/essie/?p=291', 0, 'revision', '', 0),
(292, 1, '2026-07-11 09:38:45', '2026-07-11 09:38:45', '', 'About us (13) (1)', '', 'inherit', 'closed', 'closed', '', 'about-us-13-1', '', '', '2026-07-11 09:38:45', '2026-07-11 09:38:45', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(293, 1, '2026-07-11 09:38:59', '2026-07-11 09:38:59', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:38:59', '2026-07-11 09:38:59', '', 10, 'https://mrarif.me/essie/?p=293', 0, 'revision', '', 0),
(294, 1, '2026-07-11 09:38:59', '2026-07-11 09:38:59', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:38:59', '2026-07-11 09:38:59', '', 10, 'https://mrarif.me/essie/?p=294', 0, 'revision', '', 0),
(295, 1, '2026-07-11 09:39:00', '2026-07-11 09:39:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:39:00', '2026-07-11 09:39:00', '', 10, 'https://mrarif.me/essie/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-07-11 09:40:53', '2026-07-11 09:40:53', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:40:53', '2026-07-11 09:40:53', '', 10, 'https://mrarif.me/essie/?p=296', 0, 'revision', '', 0),
(297, 1, '2026-07-11 09:40:54', '2026-07-11 09:40:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:40:54', '2026-07-11 09:40:54', '', 10, 'https://mrarif.me/essie/?p=297', 0, 'revision', '', 0),
(298, 1, '2026-07-11 09:40:54', '2026-07-11 09:40:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:40:54', '2026-07-11 09:40:54', '', 10, 'https://mrarif.me/essie/?p=298', 0, 'revision', '', 0),
(299, 1, '2026-07-11 09:42:25', '2026-07-11 09:42:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:25', '2026-07-11 09:42:25', '', 10, 'https://mrarif.me/essie/?p=299', 0, 'revision', '', 0),
(300, 1, '2026-07-11 09:42:25', '2026-07-11 09:42:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:25', '2026-07-11 09:42:25', '', 10, 'https://mrarif.me/essie/?p=300', 0, 'revision', '', 0),
(301, 1, '2026-07-11 09:42:26', '2026-07-11 09:42:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:26', '2026-07-11 09:42:26', '', 10, 'https://mrarif.me/essie/?p=301', 0, 'revision', '', 0),
(302, 1, '2026-07-11 09:42:51', '2026-07-11 09:42:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:51', '2026-07-11 09:42:51', '', 10, 'https://mrarif.me/essie/?p=302', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 09:42:52', '2026-07-11 09:42:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:52', '2026-07-11 09:42:52', '', 10, 'https://mrarif.me/essie/?p=303', 0, 'revision', '', 0),
(304, 1, '2026-07-11 09:42:52', '2026-07-11 09:42:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:42:52', '2026-07-11 09:42:52', '', 10, 'https://mrarif.me/essie/?p=304', 0, 'revision', '', 0),
(305, 1, '2026-07-11 09:45:11', '2026-07-11 09:45:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:11', '2026-07-11 09:45:11', '', 10, 'https://mrarif.me/essie/?p=305', 0, 'revision', '', 0),
(306, 1, '2026-07-11 09:45:11', '2026-07-11 09:45:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:11', '2026-07-11 09:45:11', '', 10, 'https://mrarif.me/essie/?p=306', 0, 'revision', '', 0),
(307, 1, '2026-07-11 09:45:11', '2026-07-11 09:45:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:11', '2026-07-11 09:45:11', '', 10, 'https://mrarif.me/essie/?p=307', 0, 'revision', '', 0),
(308, 1, '2026-07-11 09:45:35', '2026-07-11 09:45:35', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:35', '2026-07-11 09:45:35', '', 10, 'https://mrarif.me/essie/?p=308', 0, 'revision', '', 0),
(309, 1, '2026-07-11 09:45:35', '2026-07-11 09:45:35', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:35', '2026-07-11 09:45:35', '', 10, 'https://mrarif.me/essie/?p=309', 0, 'revision', '', 0),
(310, 1, '2026-07-11 09:45:35', '2026-07-11 09:45:35', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:45:35', '2026-07-11 09:45:35', '', 10, 'https://mrarif.me/essie/?p=310', 0, 'revision', '', 0),
(311, 1, '2026-07-11 09:47:26', '2026-07-11 09:47:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:26', '2026-07-11 09:47:26', '', 10, 'https://mrarif.me/essie/?p=311', 0, 'revision', '', 0),
(312, 1, '2026-07-11 09:47:26', '2026-07-11 09:47:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:26', '2026-07-11 09:47:26', '', 10, 'https://mrarif.me/essie/?p=312', 0, 'revision', '', 0),
(313, 1, '2026-07-11 09:47:26', '2026-07-11 09:47:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:26', '2026-07-11 09:47:26', '', 10, 'https://mrarif.me/essie/?p=313', 0, 'revision', '', 0),
(314, 1, '2026-07-11 09:47:52', '2026-07-11 09:47:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:52', '2026-07-11 09:47:52', '', 10, 'https://mrarif.me/essie/?p=314', 0, 'revision', '', 0),
(315, 1, '2026-07-11 09:47:52', '2026-07-11 09:47:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:52', '2026-07-11 09:47:52', '', 10, 'https://mrarif.me/essie/?p=315', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 09:47:52', '2026-07-11 09:47:52', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:47:52', '2026-07-11 09:47:52', '', 10, 'https://mrarif.me/essie/?p=316', 0, 'revision', '', 0),
(317, 1, '2026-07-11 09:49:19', '2026-07-11 09:49:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:49:19', '2026-07-11 09:49:19', '', 10, 'https://mrarif.me/essie/?p=317', 0, 'revision', '', 0),
(318, 1, '2026-07-11 09:49:19', '2026-07-11 09:49:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:49:19', '2026-07-11 09:49:19', '', 10, 'https://mrarif.me/essie/?p=318', 0, 'revision', '', 0),
(319, 1, '2026-07-11 09:49:20', '2026-07-11 09:49:20', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:49:20', '2026-07-11 09:49:20', '', 10, 'https://mrarif.me/essie/?p=319', 0, 'revision', '', 0),
(320, 1, '2026-07-11 09:52:01', '2026-07-11 09:52:01', '', 'svgexport-15 - 2026-07-11T155202.586', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155202-586', '', '', '2026-07-11 10:22:13', '2026-07-11 10:22:13', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155202.586.svg', 0, 'attachment', 'image/svg+xml', 0),
(321, 1, '2026-07-11 09:52:03', '2026-07-11 09:52:03', '', 'svgexport-15 - 2026-07-11T155202.586', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155202-586-2', '', '', '2026-07-11 09:52:03', '2026-07-11 09:52:03', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155202.586-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(322, 1, '2026-07-11 09:52:34', '2026-07-11 09:52:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:52:34', '2026-07-11 09:52:34', '', 10, 'https://mrarif.me/essie/?p=322', 0, 'revision', '', 0),
(323, 1, '2026-07-11 09:52:34', '2026-07-11 09:52:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:52:34', '2026-07-11 09:52:34', '', 10, 'https://mrarif.me/essie/?p=323', 0, 'revision', '', 0),
(324, 1, '2026-07-11 09:52:34', '2026-07-11 09:52:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:52:34', '2026-07-11 09:52:34', '', 10, 'https://mrarif.me/essie/?p=324', 0, 'revision', '', 0),
(325, 1, '2026-07-11 09:54:51', '2026-07-11 09:54:51', '', 'svgexport-15 - 2026-07-11T155448.410', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155448-410', '', '', '2026-07-11 09:54:51', '2026-07-11 09:54:51', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155448.410.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2026-07-11 09:54:57', '2026-07-11 09:54:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:54:57', '2026-07-11 09:54:57', '', 10, 'https://mrarif.me/essie/?p=326', 0, 'revision', '', 0),
(327, 1, '2026-07-11 09:54:57', '2026-07-11 09:54:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:54:57', '2026-07-11 09:54:57', '', 10, 'https://mrarif.me/essie/?p=327', 0, 'revision', '', 0),
(328, 1, '2026-07-11 09:54:58', '2026-07-11 09:54:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:54:58', '2026-07-11 09:54:58', '', 10, 'https://mrarif.me/essie/?p=328', 0, 'revision', '', 0),
(329, 1, '2026-07-11 09:56:03', '2026-07-11 09:56:03', '', 'svgexport-15 - 2026-07-11T155603.378', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155603-378', '', '', '2026-07-11 09:56:03', '2026-07-11 09:56:03', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155603.378.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(330, 1, '2026-07-11 09:56:08', '2026-07-11 09:56:08', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:56:08', '2026-07-11 09:56:08', '', 10, 'https://mrarif.me/essie/?p=330', 0, 'revision', '', 0),
(331, 1, '2026-07-11 09:56:08', '2026-07-11 09:56:08', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:56:08', '2026-07-11 09:56:08', '', 10, 'https://mrarif.me/essie/?p=331', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(332, 1, '2026-07-11 09:56:08', '2026-07-11 09:56:08', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:56:08', '2026-07-11 09:56:08', '', 10, 'https://mrarif.me/essie/?p=332', 0, 'revision', '', 0),
(333, 1, '2026-07-11 09:57:17', '2026-07-11 09:57:17', '', 'svgexport-15 - 2026-07-11T155718.081', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155718-081', '', '', '2026-07-11 09:57:17', '2026-07-11 09:57:17', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155718.081.svg', 0, 'attachment', 'image/svg+xml', 0),
(334, 1, '2026-07-11 09:57:22', '2026-07-11 09:57:22', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:57:22', '2026-07-11 09:57:22', '', 10, 'https://mrarif.me/essie/?p=334', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(335, 1, '2026-07-11 09:57:22', '2026-07-11 09:57:22', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:57:22', '2026-07-11 09:57:22', '', 10, 'https://mrarif.me/essie/?p=335', 0, 'revision', '', 0),
(336, 1, '2026-07-11 09:57:22', '2026-07-11 09:57:22', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:57:22', '2026-07-11 09:57:22', '', 10, 'https://mrarif.me/essie/?p=336', 0, 'revision', '', 0),
(337, 1, '2026-07-11 09:58:58', '2026-07-11 09:58:58', '', 'svgexport-15 - 2026-07-11T155857.682', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t155857-682', '', '', '2026-07-11 09:58:58', '2026-07-11 09:58:58', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T155857.682.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(338, 1, '2026-07-11 09:59:25', '2026-07-11 09:59:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:59:25', '2026-07-11 09:59:25', '', 10, 'https://mrarif.me/essie/?p=338', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(339, 1, '2026-07-11 09:59:25', '2026-07-11 09:59:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:59:25', '2026-07-11 09:59:25', '', 10, 'https://mrarif.me/essie/?p=339', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 1, '2026-07-11 09:59:25', '2026-07-11 09:59:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 09:59:25', '2026-07-11 09:59:25', '', 10, 'https://mrarif.me/essie/?p=340', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(341, 1, '2026-07-11 10:01:17', '2026-07-11 10:01:17', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:01:17', '2026-07-11 10:01:17', '', 10, 'https://mrarif.me/essie/?p=341', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(342, 1, '2026-07-11 10:01:17', '2026-07-11 10:01:17', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:01:17', '2026-07-11 10:01:17', '', 10, 'https://mrarif.me/essie/?p=342', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(343, 1, '2026-07-11 10:01:17', '2026-07-11 10:01:17', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:01:17', '2026-07-11 10:01:17', '', 10, 'https://mrarif.me/essie/?p=343', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(344, 1, '2026-07-11 10:03:26', '2026-07-11 10:03:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:03:26', '2026-07-11 10:03:26', '', 10, 'https://mrarif.me/essie/?p=344', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(345, 1, '2026-07-11 10:03:27', '2026-07-11 10:03:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:03:27', '2026-07-11 10:03:27', '', 10, 'https://mrarif.me/essie/?p=345', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(346, 1, '2026-07-11 10:03:27', '2026-07-11 10:03:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:03:27', '2026-07-11 10:03:27', '', 10, 'https://mrarif.me/essie/?p=346', 0, 'revision', '', 0),
(347, 1, '2026-07-11 10:05:37', '2026-07-11 10:05:37', '', 'svgexport-15 - 2026-07-11T160532.891', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t160532-891', '', '', '2026-07-11 10:05:37', '2026-07-11 10:05:37', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T160532.891.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(385, 1, '2026-07-11 10:27:32', '2026-07-11 10:27:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:27:32', '2026-07-11 10:27:32', '', 10, 'https://mrarif.me/essie/?p=385', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(378, 1, '2026-07-11 10:22:18', '2026-07-11 10:22:18', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:22:18', '2026-07-11 10:22:18', '', 10, 'https://mrarif.me/essie/?p=378', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(361, 1, '2026-07-11 10:09:13', '2026-07-11 10:09:13', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:09:13', '2026-07-11 10:09:13', '', 10, 'https://mrarif.me/essie/?p=361', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:07:06', '2026-07-11 10:07:06', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:07:06', '2026-07-11 10:07:06', '', 10, 'https://mrarif.me/essie/?p=356', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:05:41', '2026-07-11 10:05:41', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:05:41', '2026-07-11 10:05:41', '', 10, 'https://mrarif.me/essie/?p=351', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:05:41', '2026-07-11 10:05:41', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:05:41', '2026-07-11 10:05:41', '', 10, 'https://mrarif.me/essie/?p=349', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:05:41', '2026-07-11 10:05:41', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:05:41', '2026-07-11 10:05:41', '', 10, 'https://mrarif.me/essie/?p=350', 0, 'revision', '', 0),
(352, 1, '2026-07-11 10:07:00', '2026-07-11 10:07:00', '', 'svgexport-15 - 2026-07-11T160700.576', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t160700-576', '', '', '2026-07-11 10:07:00', '2026-07-11 10:07:00', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T160700.576.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(362, 1, '2026-07-11 10:10:34', '2026-07-11 10:10:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:10:34', '2026-07-11 10:10:34', '', 10, 'https://mrarif.me/essie/?p=362', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:07:06', '2026-07-11 10:07:06', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:07:06', '2026-07-11 10:07:06', '', 10, 'https://mrarif.me/essie/?p=354', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:07:06', '2026-07-11 10:07:06', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:07:06', '2026-07-11 10:07:06', '', 10, 'https://mrarif.me/essie/?p=355', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:09:08', '2026-07-11 10:09:08', '', 'svgexport-15 - 2026-07-11T160909.657', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t160909-657', '', '', '2026-07-11 10:09:08', '2026-07-11 10:09:08', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T160909.657.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:09:12', '2026-07-11 10:09:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:09:12', '2026-07-11 10:09:12', '', 10, 'https://mrarif.me/essie/?p=359', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(360, 1, '2026-07-11 10:09:12', '2026-07-11 10:09:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:09:12', '2026-07-11 10:09:12', '', 10, 'https://mrarif.me/essie/?p=360', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(363, 1, '2026-07-11 10:10:34', '2026-07-11 10:10:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:10:34', '2026-07-11 10:10:34', '', 10, 'https://mrarif.me/essie/?p=363', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(370, 1, '2026-07-11 10:15:46', '2026-07-11 10:15:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 496 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:15:46', '2026-07-11 10:15:46', '', 10, 'https://mrarif.me/essie/?p=370', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(364, 1, '2026-07-11 10:10:34', '2026-07-11 10:10:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:10:34', '2026-07-11 10:10:34', '', 10, 'https://mrarif.me/essie/?p=364', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(365, 1, '2026-07-11 10:12:21', '2026-07-11 10:12:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:12:21', '2026-07-11 10:12:21', '', 10, 'https://mrarif.me/essie/?p=365', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(366, 1, '2026-07-11 10:12:21', '2026-07-11 10:12:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:12:21', '2026-07-11 10:12:21', '', 10, 'https://mrarif.me/essie/?p=366', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(367, 1, '2026-07-11 10:12:21', '2026-07-11 10:12:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:12:21', '2026-07-11 10:12:21', '', 10, 'https://mrarif.me/essie/?p=367', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(368, 1, '2026-07-11 10:15:46', '2026-07-11 10:15:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:15:46', '2026-07-11 10:15:46', '', 10, 'https://mrarif.me/essie/?p=368', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2026-07-11 10:15:46', '2026-07-11 10:15:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 60 60\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M22.25.02c-.57-.07-1.14.1-1.57.48-.07.06-.13.13-.19.2-.43-.44-.94-.7-1.5-.7-1.69 0-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5c0-2.37-1.23-5-3-5s-3 2.69-3 5v7c0 .29-.13.57-.36.76-.13.11-.41.29-.82.22-.46-.08-.83-.56-.83-1.11V5C6 2.63 4.77 0 3 0S0 2.69 0 5v10c0 3.85 3.13 6.99 6.97 7l-.86 32.97c-.04 1.33.46 2.59 1.38 3.55.93.95 2.17 1.48 3.5 1.48s2.58-.53 3.5-1.48c.93-.96 1.42-2.21 1.38-3.55L15.01 22c1.95 0 3.71-.82 4.97-2.11v35.52c0 2.2 1.51 4.09 3.6 4.5.3.06.6.09.9.09 1.04 0 2.05-.35 2.86-1.02a4.49 4.49 0 0 0 1.65-3.49L28.09 36c1.61-.05 2.9-1.38 2.9-3V13C31 4.25 26.48.56 22.25.02zM15 20h-1c-.27 0-.53.11-.72.3s-.29.46-.28.72l.89 34c.02.79-.27 1.53-.82 2.1-1.1 1.13-3.04 1.13-4.14 0-.55-.57-.84-1.31-.82-2.1l.89-34c0-.27-.1-.53-.28-.72-.19-.19-.45-.3-.72-.3H7c-2.76 0-5-2.24-5-5V5c0-1.43.65-2.65 1.02-2.96C3.37 2.31 4 3.51 4 5v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v6.88c0 1.52 1.07 2.84 2.5 3.08.87.15 1.76-.1 2.44-.67s1.07-1.41 1.07-2.29V5c0-1.43.65-2.65 1.02-2.96.35.27.98 1.47.98 2.96v10c0 2.76-2.24 5-5 5zm14 13c0 .55-.45 1-1 1h-.95c-.27 0-.54.11-.72.31s-.29.46-.28.74l.95 20.3v.14c0 .75-.33 1.46-.92 1.94s-1.33.67-2.1.51C22.83 57.71 22 56.65 22 55.4V2c4.38.56 7 4.67 7 11zM35.07 4c-.55-.02-1.05.17-1.45.55-.39.38-.62.91-.62 1.45v47.99c0 .54.23 1.07.62 1.45.37.36.86.55 1.37.55h.08C49.05 55.42 60 44 60 29.99S49.05 4.57 35.07 4zm7.43 11.28c.16.09.33.13.5.13.35 0 .68-.18.87-.5l.98-1.69c2.37 1.54 4.4 3.56 5.94 5.94l-1.69.98c-.48.28-.64.89-.37 1.37.19.32.52.5.87.5.17 0 .34-.04.5-.13l1.69-.98c1.26 2.45 2.02 5.2 2.17 8.11h-1.95c-.55 0-1 .45-1 1s.45 1 1 1h1.95c-.14 2.91-.9 5.66-2.17 8.11l-1.69-.98c-.48-.28-1.09-.11-1.37.37s-.11 1.09.37 1.37l1.69.98c-1.54 2.37-3.56 4.4-5.94 5.94l-.98-1.69a1.01 1.01 0 0 0-1.37-.37c-.48.28-.64.89-.37 1.37l.98 1.69c-2.45 1.26-5.2 2.02-8.11 2.17V32.1l3.38 2.7c.18.15.41.22.62.22.29 0 .58-.13.78-.38.34-.43.27-1.06-.16-1.41l-4.3-3.44 6.52-10.24c.3-.47.16-1.08-.31-1.38-.47-.29-1.08-.16-1.38.31l-5.16 8.1V10.05c2.91.14 5.66.9 8.11 2.17l-.98 1.69c-.28.48-.11 1.09.37 1.37zM35 54v-2.02c3.6-.16 6.97-1.2 9.92-2.89.03-.01.05-.02.08-.03.02 0 .03-.03.04-.04 3.29-1.92 6.04-4.66 7.96-7.95.02-.02.04-.04.05-.06 0-.02 0-.04.02-.05C54.93 37.73 56 34 56 30.01s-1.07-7.72-2.93-10.95c0-.02 0-.04-.02-.05 0-.02-.03-.03-.04-.04-1.92-3.3-4.68-6.05-7.98-7.98-.02-.01-.02-.03-.04-.04-.02 0-.04 0-.05-.02-2.96-1.7-6.34-2.74-9.95-2.9V6.01h-.01c12.9.52 23.01 11.06 23.01 23.99s-10.11 23.48-23 23.99z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:15:46', '2026-07-11 10:15:46', '', 10, 'https://mrarif.me/essie/?p=369', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:21:16', '2026-07-11 10:21:16', '', 'checkup_18753278', '', 'inherit', 'closed', 'closed', '', 'checkup_18753278', '', '', '2026-07-11 10:21:16', '2026-07-11 10:21:16', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/checkup_18753278.svg', 0, 'attachment', 'image/svg+xml', 0),
(372, 1, '2026-07-11 10:21:19', '2026-07-11 10:21:19', '', 'dusting_4871604', '', 'inherit', 'closed', 'closed', '', 'dusting_4871604', '', '', '2026-07-11 10:21:19', '2026-07-11 10:21:19', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/dusting_4871604.svg', 0, 'attachment', 'image/svg+xml', 0),
(373, 1, '2026-07-11 10:21:22', '2026-07-11 10:21:22', '', 'grocery-bag_3731113', '', 'inherit', 'closed', 'closed', '', 'grocery-bag_3731113', '', '', '2026-07-11 10:21:22', '2026-07-11 10:21:22', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/grocery-bag_3731113.svg', 0, 'attachment', 'image/svg+xml', 0),
(374, 1, '2026-07-11 10:21:25', '2026-07-11 10:21:25', '', 'menu_8708154', '', 'inherit', 'closed', 'closed', '', 'menu_8708154', '', '', '2026-07-11 10:21:25', '2026-07-11 10:21:25', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/menu_8708154.svg', 0, 'attachment', 'image/svg+xml', 0),
(375, 1, '2026-07-11 10:21:28', '2026-07-11 10:21:28', '', 'relationship_16034829', '', 'inherit', 'closed', 'closed', '', 'relationship_16034829', '', '', '2026-07-11 10:21:28', '2026-07-11 10:21:28', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/relationship_16034829.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(376, 1, '2026-07-11 10:22:17', '2026-07-11 10:22:17', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 496 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:22:17', '2026-07-11 10:22:17', '', 10, 'https://mrarif.me/essie/?p=376', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(377, 1, '2026-07-11 10:22:17', '2026-07-11 10:22:17', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg aria-hidden=\"true\" viewBox=\"0 0 496 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z\"></path></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M496.08 487.81c-13.75-21.88-18.49-45.93-21.61-69.05 9.74-2.9 16.86-11.93 16.86-22.59 0-13-10.57-23.57-23.57-23.57h-79.25V36.35c0-11.77-9.58-21.35-21.35-21.35h-.62c-11.77 0-21.35 9.58-21.35 21.35v200.1h-12.81c-1.02-20.91-18.34-37.61-39.5-37.61-.44 0-.87.01-1.31.02-6.38-18.7-24.25-31.78-44.38-31.78-15.83 0-30.31 7.84-38.95 20.79a39.469 39.469 0 0 0-11.78-1.78 39.57 39.57 0 0 0-32.44 16.92c-1.02-.08-2.04-.12-3.07-.12-19.77 0-36.2 14.58-39.1 33.55H103.6c-9.49 0-17.22 7.72-17.22 17.22v12.53c0 9.49 7.72 17.22 17.22 17.22h7.54l15.05 198.27c.65 8.59 7.91 15.31 16.52 15.31H491a6 6 0 0 0 5.25-3.1 5.97 5.97 0 0 0-.17-6.08zm-16.75-91.64c0 6.38-5.19 11.57-11.57 11.57H265.94c-6.38 0-11.57-5.19-11.57-11.57s5.19-11.57 11.57-11.57h201.82c6.38-.01 11.57 5.19 11.57 11.57zM345.19 283.42v89.18h-9.28l6.77-89.18zM366.54 27h.62c5.15 0 9.35 4.19 9.35 9.35V372.6h-19.32V36.35c0-5.16 4.19-9.35 9.35-9.35zm-21.35 244.42h-79.56v-22.96h79.56zm-121.24-10.74c-3.31 0-6 2.69-6 6v86.72c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-54.54c0-3.31-2.69-6-6-6s-6 2.69-6 6v32.77c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-83.19h95.05v61.57c0 6.53-5.31 11.84-11.84 11.84s-11.84-5.31-11.84-11.84v-43.34c-.01-3.3-2.7-5.99-6.01-5.99zm-62.99-45.78c1.69 0 3.38.15 5.03.46 2.54.47 5.09-.74 6.34-3a27.587 27.587 0 0 1 24.14-14.26c4.13 0 8.09.89 11.79 2.64 2.93 1.39 6.43.2 7.91-2.68 6-11.7 17.9-18.97 31.03-18.97 16.33 0 30.66 11.57 34.08 27.5a5.99 5.99 0 0 0 6.88 4.65c1.55-.27 3.13-.4 4.71-.4 14.54 0 26.47 11.32 27.47 25.61H134.07c2.75-12.31 13.76-21.55 26.89-21.55zm-62.57 51.3v-12.53c0-2.88 2.34-5.22 5.22-5.22h42.97v22.96h-42.97c-2.88.01-5.22-2.34-5.22-5.21zm39.77 214.58-14.98-197.37h23.39v48.22c0 13.15 10.7 23.84 23.84 23.84 4.31 0 8.35-1.15 11.84-3.16v1.09c0 13.15 10.7 23.84 23.84 23.84s23.84-10.7 23.84-23.84v-22.7c3.49 2.01 7.53 3.16 11.84 3.16 13.15 0 23.84-10.7 23.84-23.84v-26.61h65.01l-6.77 89.18h-57.94c-13 0-23.57 10.57-23.57 23.57 0 10.67 7.13 19.7 16.86 22.59-2.99 22.14-7.47 45.12-19.91 66.24h-96.61c-2.38.01-4.33-1.8-4.52-4.21zM432.64 485v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-27.86v-26.89c0-3.31-2.69-6-6-6s-6 2.69-6 6V485h-48.02c11.1-21.36 15.28-43.74 18.16-65.26h191.28c2.88 21.52 7.07 43.9 18.16 65.26zM83.1 298.43v-32.26c0-3.31-2.69-6-6-6H45.69c-3.31 0-6 2.69-6 6v32.26C25.63 301.23 15 313.66 15 328.53v155.16c0 7.34 5.97 13.31 13.31 13.31h66.16c7.34 0 13.31-5.97 13.31-13.31V328.53c.01-14.87-10.62-27.3-24.68-30.1zm-12-26.26v25.67H51.69v-25.67zm-25.41 37.67H77.1c10.31 0 18.69 8.38 18.69 18.69v13.9H27v-13.9c0-10.31 8.38-18.69 18.69-18.69zm50.1 44.59v85.97H27v-85.97zM94.48 485H28.31c-.71 0-1.31-.6-1.31-1.31v-31.28h68.79v31.28c0 .71-.6 1.31-1.31 1.31zM20.31 133.64l26.13 9.51 7.42 35.16c.82 3.86 3.97 6.55 7.67 6.55s6.85-2.69 7.67-6.55l7.42-35.16 26.13-9.51c3.18-1.16 5.31-4.37 5.31-8s-2.14-6.84-5.31-8l-26.13-9.51-7.42-35.15c-.82-3.86-3.97-6.55-7.67-6.55s-6.85 2.69-7.67 6.55l-7.42 35.16-26.13 9.51c-3.18 1.16-5.32 4.37-5.32 8 .01 3.62 2.15 6.84 5.32 7.99zm33.37-15.36a6 6 0 0 0 3.82-4.4l4.04-19.12 4.04 19.12a6 6 0 0 0 3.82 4.4l20.25 7.37-20.25 7.37a6 6 0 0 0-3.82 4.4l-4.04 19.12-4.04-19.12a6 6 0 0 0-3.82-4.4l-20.25-7.37zm82.71-23.47 32.76 11.92 9.26 43.87c.87 4.1 4.19 6.96 8.07 6.96s7.21-2.86 8.07-6.96l9.26-43.87 32.76-11.92c3.42-1.24 5.62-4.59 5.62-8.53s-2.21-7.29-5.62-8.53l-32.76-11.92-9.26-43.87c-.87-4.1-4.19-6.96-8.07-6.96s-7.21 2.86-8.07 6.96l-9.26 43.87-32.76 11.92c-3.42 1.24-5.62 4.59-5.62 8.53s2.21 7.29 5.62 8.53zm40-18.85a6 6 0 0 0 3.82-4.4l6.28-29.75 6.28 29.75a6 6 0 0 0 3.82 4.4l28.35 10.31-28.35 10.32a6 6 0 0 0-3.82 4.4l-6.28 29.75-6.28-29.75a6 6 0 0 0-3.82-4.4l-28.35-10.32z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M495.395 437.676 443.18 350.66l4.675-39.98h6.649c11.785 0 21.371-9.586 21.371-21.371v-24.48c0-11.782-9.586-21.368-21.371-21.368h-29.32v-28.035c0-.074.003-.153.003-.23 0-1.762-.609-3.383-1.628-4.665 0-.004-.004-.008-.008-.011l-25.895-32.543V150.64c0-9.016-7.332-16.352-16.347-16.352h-30.153a43.29 43.29 0 0 0-.582-1.129c-3.715-6.988-13.953-15.933-30.437-26.594-3.414-2.203-5.453-5.964-5.453-10.066V76.625c3.21-1.594 5.425-4.906 5.425-8.73v-41.73C320.11 11.737 308.375 0 293.945 0h-28.492c-14.43 0-26.164 11.738-26.164 26.164v41.73c0 3.825 2.211 7.137 5.426 8.731V96.5c0 4.102-2.043 7.863-5.461 10.07a242.848 242.848 0 0 0-8.879 6.008c.023-.582.04-1.164.04-1.75 0-22.055-17.946-40-40-40-22.06 0-40 17.945-40 40 0 2.82.304 5.664.901 8.426.899 4.258 1.739 8.219 2.52 11.91-9.125-3.23-19.672-1.773-27.707 4.777-5.922 4.836-9.61 11.688-10.379 19.297-.773 7.61 1.465 15.063 6.273 20.95a28.272 28.272 0 0 0 4.325 4.292l22.328 17.993c-12.57 11.093-20.703 27.101-21.36 44.988H91.52l-1.563-2.938c.234-.12.469-.246.7-.367 23.98-12.758 43.984-33.707 35.812-49.07-8.172-15.363-36.723-10.488-60.703 2.27-.235.12-.47.246-.7.374l-10.082-18.953c.235-.12.47-.246.703-.367 11.95-6.355 22.262-14.3 29.043-22.375 11.172-13.293 9.036-22.43 6.766-26.695-2.27-4.266-8.652-11.149-25.922-9.317-10.48 1.114-22.836 5.227-34.781 11.582-.234.125-.469.25-.7.375l-7.558-14.203c-4.215-7.922-6.351-16.465-6.351-25.386 0-20.114 11.015-38.465 28.753-47.899 12.778-6.797 27.442-8.21 41.282-3.984 13.84 4.23 25.207 13.597 32.004 26.375l12.918 24.3a7.497 7.497 0 0 0 10.144 3.098 7.497 7.497 0 0 0 3.102-10.14L131.465 55.84C113.55 22.156 71.575 9.336 37.89 27.25 15.25 39.293 1.184 62.719 1.184 88.39c0 11.247 2.804 22.462 8.109 32.43l65.234 122.64H43.984c-11.785 0-21.37 9.587-21.37 21.368v24.48c0 11.786 9.585 21.372 21.37 21.372h6.645l4.68 39.98-52.215 87.016A21.502 21.502 0 0 0 .652 454.05a21.504 21.504 0 0 0 9.856 13.3 21.552 21.552 0 0 0 8.097 2.876 21.605 21.605 0 0 0 21.582-10.29l23.352-38.914 1.684 14.45a7.505 7.505 0 0 0 8.32 6.578 7.501 7.501 0 0 0 6.578-8.32l-3.941-33.774 53.574-89.277h238.98l53.575 89.277-9.414 80.469c-1.102 9.449-9.106 16.574-18.622 16.574H104.211c-9.516 0-17.52-7.125-18.621-16.582l-1.98-16.91a7.495 7.495 0 0 0-8.32-6.574 7.495 7.495 0 0 0-6.575 8.32l1.976 16.902C72.671 499.172 87.086 512 104.215 512h290.058c17.13 0 31.543-12.828 33.52-29.84l7.152-61.144 23.356 38.918c6.203 10.332 19.504 13.52 29.68 7.418 10.25-6.153 13.566-19.426 7.414-29.676zM72.809 206.598c24.156-12.852 39.304-10.551 40.418-8.47 1.105 2.083-5.457 15.934-29.614 28.782-.23.125-.465.25-.699.371L72.11 206.97c.235-.125.465-.25.7-.371zm-34.973-65.75c10.144-5.395 20.832-9.008 29.324-9.907 7.457-.789 10.738.778 11.094 1.442.351.664-.18 4.262-5.004 10.004-5.496 6.539-14.46 13.383-24.61 18.777-.23.125-.464.246-.699.371l-10.8-20.312c.23-.125.46-.25.695-.375zm392.707 188.754-11.356-18.922h13.567zm-152.07-86.141v-25.652l23.648-29.72h84.418l15.598 19.606h-33.98a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5h42.027v20.766zm104.187-92.824v22.453h-76.656v-22.453a1.35 1.35 0 0 1 1.348-1.348h38.687c.066 0 .129.004.195.004s.133-.004.2-.004h34.875c.746 0 1.351.606 1.351 1.348zM265.453 15h28.492c6.157 0 11.164 5.008 11.164 11.164V62.63h-50.82V26.164c0-6.156 5.008-11.164 11.164-11.164zm-18.062 104.172c7.714-4.977 12.324-13.453 12.324-22.672V77.633h39.969V96.5c0 9.219 4.609 17.695 12.316 22.668 10.371 6.707 16.559 11.668 20.238 15.121h-24.886c-9.016 0-16.348 7.332-16.348 16.348v27.336l-25.899 32.547a7.486 7.486 0 0 0-1.632 4.667v28.274h-9.961c-.66-17.887-8.79-33.895-21.356-44.988 2.52-2.032 5.477-4.41 9.051-7.293l13.262-10.684a28.78 28.78 0 0 0 4.312-4.273c4.84-5.926 7.078-13.38 6.305-20.989-.774-7.609-4.461-14.46-10.395-19.297-5.925-4.832-13.379-7.066-20.98-6.292-.441.046-.883.101-1.316.164 4.101-3.27 9.187-6.883 14.996-10.637zM221.332 158c2.063-2.922 3.941-12.422 13.895-13.434a13.535 13.535 0 0 1 9.988 2.996 13.538 13.538 0 0 1 4.95 9.188c.472 4.664-1.45 9.14-5.087 12.05l-13.281 10.7c-5.39 4.344-9.367 7.55-12.574 10.133-1.36-.7-2.75-1.352-4.164-1.953zm-30.918-72.172c13.785 0 25 11.219 25 25 0 1.79-.187 3.567-.566 5.32l-2.914 13.782c-.016.074-.036.148-.047.222l-11.274 53.34c-3.32-.539-6.726-.82-10.199-.82-3.469 0-6.875.281-10.191.82l-.094-.437c-2.606-12.344-5.399-25.578-14.145-66.938a25.074 25.074 0 0 1-.57-5.285c0-13.785 11.215-25.004 25-25.004zm-56.738 80.91c-4.754-5.82-3.883-14.426 1.937-19.176 6.614-5.39 16.735-3.496 20.778 4.407l3.125 6.07c2.816 13.332 4.41 20.875 5.933 28.11l.324 1.527a64.137 64.137 0 0 0-4.164 1.953c-27.312-22.125-26.39-20.98-27.933-22.89zm56.738 30.934c25.758 0 46.852 20.332 48.082 45.789h-96.164c1.23-25.457 22.324-45.79 48.082-45.79zM65.73 310.68H79.3l-11.355 18.922zM27.324 452.215a6.618 6.618 0 0 1-6.617 3.156h-.004a6.639 6.639 0 0 1-2.476-.883 6.58 6.58 0 0 1-3.02-4.078 6.591 6.591 0 0 1 .746-5.02l53.496-89.148c.008-.004.012-.012.016-.02l29.375-48.949c.101-.16.203-.324.293-.492l16.36-27.261a6.58 6.58 0 0 1 4.077-3.02 6.53 6.53 0 0 1 1.618-.203 6.62 6.62 0 0 1 3.402.95c3.133 1.882 4.156 5.96 2.273 9.097l-7.668 12.777a8.444 8.444 0 0 0-.242.402zm111.43-156.535.973-1.618c2.972-4.953 3.835-10.769 2.437-16.375a21.504 21.504 0 0 0-9.855-13.3 21.483 21.483 0 0 0-16.375-2.438 21.494 21.494 0 0 0-13.301 9.856L88.3 295.68H43.984a6.377 6.377 0 0 1-6.37-6.371v-24.48c0-3.513 2.859-6.368 6.37-6.368h410.52c3.512 0 6.371 2.855 6.371 6.367v24.48a6.377 6.377 0 0 1-6.371 6.372h-44.317l-14.328-23.875a21.473 21.473 0 0 0-13.304-9.856c-5.606-1.402-11.418-.535-16.375 2.438a21.484 21.484 0 0 0-9.852 13.3 21.483 21.483 0 0 0 2.438 16.375l.968 1.618zM477.78 455.37c-.144-.023-4.383.57-6.617-3.156l-99.539-165.867c-1.883-3.137-.863-7.22 2.273-9.098a6.625 6.625 0 0 1 9.098 2.273c5.535 9.227 40.64 67.723 46.008 76.668l.035.059 53.492 89.145c2.469 4.105-.117 9.32-4.75 9.976zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M171.781 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.03 20.031 11.044 0 20.028-8.988 20.028-20.031zm-25.058 0v-24.816a5.038 5.038 0 0 1 5.03-5.032 5.038 5.038 0 0 1 5.032 5.032v24.816a5.038 5.038 0 0 1-5.031 5.031 5.038 5.038 0 0 1-5.031-5.031zM220.527 457.242V432.43c0-11.047-8.984-20.032-20.027-20.032-11.047 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.984 20.031 20.031 20.031 11.043 0 20.027-8.984 20.027-20.03zm-25.058 0V432.43a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.812a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.03zM269.273 376.168v-24.816c0-11.043-8.984-20.032-20.027-20.032-11.047 0-20.031 8.989-20.031 20.032v24.816c0 11.043 8.984 20.031 20.031 20.031 11.043 0 20.027-8.988 20.027-20.031zm-25.058 0v-24.816a5.035 5.035 0 0 1 5.031-5.032 5.035 5.035 0 0 1 5.027 5.032v24.816a5.035 5.035 0 0 1-5.027 5.031 5.035 5.035 0 0 1-5.031-5.031zM318.02 457.242V432.43c0-11.047-8.985-20.032-20.032-20.032-11.043 0-20.031 8.985-20.031 20.032v24.812c0 11.047 8.988 20.031 20.031 20.031 11.047 0 20.032-8.984 20.032-20.03zm-25.06 0V432.43a5.035 5.035 0 0 1 5.028-5.032 5.035 5.035 0 0 1 5.032 5.032v24.812a5.035 5.035 0 0 1-5.032 5.031 5.035 5.035 0 0 1-5.027-5.03zM366.766 376.168v-24.816c0-11.043-8.985-20.032-20.032-20.032-11.043 0-20.03 8.989-20.03 20.032v24.816c0 11.043 8.987 20.031 20.03 20.031 11.047 0 20.032-8.988 20.032-20.031zm-25.063 0v-24.816c0-2.774 2.258-5.032 5.031-5.032s5.032 2.258 5.032 5.032v24.816c0 2.773-2.258 5.031-5.032 5.031s-5.03-2.258-5.03-5.031zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:22:17', '2026-07-11 10:22:17', '', 10, 'https://mrarif.me/essie/?p=377', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(379, 1, '2026-07-11 10:26:35', '2026-07-11 10:26:35', '', 'family-care_18394352', '', 'inherit', 'closed', 'closed', '', 'family-care_18394352', '', '', '2026-07-11 10:26:35', '2026-07-11 10:26:35', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/family-care_18394352.svg', 0, 'attachment', 'image/svg+xml', 0),
(380, 1, '2026-07-11 10:26:38', '2026-07-11 10:26:38', '', 'mechanic_3833691', '', 'inherit', 'closed', 'closed', '', 'mechanic_3833691', '', '', '2026-07-11 10:26:38', '2026-07-11 10:26:38', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/mechanic_3833691.svg', 0, 'attachment', 'image/svg+xml', 0),
(381, 1, '2026-07-11 10:26:41', '2026-07-11 10:26:41', '', 'time_15833691', '', 'inherit', 'closed', 'closed', '', 'time_15833691', '', '', '2026-07-11 10:26:41', '2026-07-11 10:26:41', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/time_15833691.svg', 0, 'attachment', 'image/svg+xml', 0),
(382, 1, '2026-07-11 10:26:43', '2026-07-11 10:26:43', '', 'towel_18074430', '', 'inherit', 'closed', 'closed', '', 'towel_18074430', '', '', '2026-07-11 10:26:43', '2026-07-11 10:26:43', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/towel_18074430.svg', 0, 'attachment', 'image/svg+xml', 0),
(383, 1, '2026-07-11 10:27:32', '2026-07-11 10:27:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:27:32', '2026-07-11 10:27:32', '', 10, 'https://mrarif.me/essie/?p=383', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(384, 1, '2026-07-11 10:27:32', '2026-07-11 10:27:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 48 48\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M41.211 37.288a4.112 4.112 0 1 1 4.109-4.112 4.114 4.114 0 0 1-4.109 4.112zm0-6.724a2.612 2.612 0 1 0 2.609 2.612 2.613 2.613 0 0 0-2.609-2.612zM19.542 37.288a4.112 4.112 0 1 1 4.108-4.112 4.115 4.115 0 0 1-4.108 4.112zm0-6.724a2.612 2.612 0 1 0 2.608 2.612 2.614 2.614 0 0 0-2.608-2.612z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M46.621 33.926H44.57a.75.75 0 0 1 0-1.5h1.839v-3.977a3.16 3.16 0 0 0-.4-1.536l-4.06-7.279a.4.4 0 0 0-.349-.205h-5.533v13h1.786a.75.75 0 0 1 0 1.5h-2.536a.75.75 0 0 1-.75-.75v-14.5a.75.75 0 0 1 .75-.75H41.6a1.9 1.9 0 0 1 1.66.974l4.059 7.28a4.662 4.662 0 0 1 .589 2.266v4.19a1.289 1.289 0 0 1-1.287 1.287zM16.183 33.926H8.992a.75.75 0 0 1-.75-.75v-5.768a.75.75 0 0 1 1.5 0v5.018h6.441a.75.75 0 0 1 0 1.5zM8.992 24.747a.75.75 0 0 1-.75-.75v-5.036a.75.75 0 0 1 1.5 0V24a.75.75 0 0 1-.75.747z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M35.317 33.926H22.9a.75.75 0 0 1 0-1.5h11.667V12.805H9.742v3.089a.75.75 0 0 1-1.5 0v-3.227a1.364 1.364 0 0 1 1.363-1.362h25.1a1.364 1.364 0 0 1 1.362 1.362v20.509a.75.75 0 0 1-.75.75zM11.957 28.158H2.438a.75.75 0 0 1 0-1.5h9.519a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M19.542 24.747H6.259a.75.75 0 0 1 0-1.5h13.283a.75.75 0 0 1 0 1.5zM5.846 20.787H.659a.75.75 0 1 1 0-1.5h5.187a.75.75 0 0 1 0 1.5zM14.163 16.644H5.007a.75.75 0 1 1 0-1.5h9.156a.75.75 0 0 1 0 1.5z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M277.332 213.332h-42.664c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-21.332c-5.89 0-10.668-4.773-10.668-10.664V128c0-5.89 4.777-10.668 10.668-10.668H224V96c0-5.89 4.777-10.668 10.668-10.668h42.664C283.222 85.332 288 90.109 288 96v21.332h21.332c5.89 0 10.668 4.777 10.668 10.668v42.668c0 5.89-4.777 10.664-10.668 10.664H288v21.336c0 5.89-4.777 10.664-10.668 10.664zm-32-21.332h21.336v-21.332c0-5.89 4.773-10.668 10.664-10.668h21.336v-21.332h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-21.332h-21.336V128c0 5.89-4.773 10.668-10.664 10.668h-21.336V160h21.336c5.89 0 10.664 4.777 10.664 10.668zM437.332 512H74.668C68.778 512 64 507.223 64 501.332v-42.664h21.332v32h341.336v-288H448v298.664c0 5.89-4.777 10.668-10.668 10.668zM160 106.668H74.668V85.332h74.664V10.668h21.336V96c0 5.89-4.777 10.668-10.668 10.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M85.332 309.332H64V96c0-2.828 1.125-5.543 3.125-7.543l85.332-85.332c2-2 4.715-3.125 7.543-3.125h277.332C443.222 0 448 4.777 448 10.668v42.664h-21.332v-32H164.414l-79.082 79.082zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M170.668 245.332H384v21.336H170.668zM149.332 288H384v21.332H149.332zM192 330.668h192V352H192zM192 373.332h192v21.336H192zM192 416h149.332v21.332H192zM362.668 416H384v21.332h-21.332zM384 117.332h85.332v21.336H384zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M394.668 213.332c-5.89 0-10.668-4.773-10.668-10.664v-21.336h-10.668c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32H480c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32h-48.918l-28.875 28.875c-2 2-4.71 3.125-7.539 3.125zM373.332 96c-5.89 0-10.664 4.777-10.664 10.668v42.664c0 5.89 4.773 10.668 10.664 10.668h21.336c5.89 0 10.664 4.777 10.664 10.668v6.25l13.793-13.793c2-2 4.715-3.125 7.543-3.125H480c5.89 0 10.668-4.777 10.668-10.668v-42.664c0-5.89-4.777-10.668-10.668-10.668zM42.668 373.332H128v21.336H42.668zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M138.668 437.332H32c-17.672 0-32-14.324-32-32v-42.664c0-17.676 14.328-32 32-32h48.918l28.875-28.875A10.666 10.666 0 0 1 128 309.332v21.336h10.668c17.672 0 32 14.324 32 32v42.664c0 17.676-14.328 32-32 32zM32 352c-5.89 0-10.668 4.777-10.668 10.668v42.664C21.332 411.222 26.109 416 32 416h106.668c5.89 0 10.664-4.777 10.664-10.668v-42.664c0-5.89-4.773-10.668-10.664-10.668h-21.336c-5.89 0-10.664-4.777-10.664-10.668v-6.25l-13.793 13.793c-2 2-4.715 3.125-7.543 3.125zm0 0\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M380.172 501.122a26.117 26.117 0 0 0 26.178-26.643l-.686-39.305h9.89a25.067 25.067 0 0 0 25.126-25.57l-5.498-314.953c-.016-.929-.536-2.491-1.47-3.412a57486.798 57486.798 0 0 0-80.331-78.951c-.813-.797-2.02-1.276-3.123-1.349-.106-.007-.204-.062-.311-.062H130.552a25.067 25.067 0 0 0-25.126 25.57l.705 40.378h-8.815a26.117 26.117 0 0 0-26.178 26.641l6.476 371.012c.256 14.692 12.417 26.643 27.108 26.643h275.45zM355.065 27.366a55853.505 55853.505 0 0 1 63.548 62.456h-54.359c-4.466 0-8.162-3.632-8.24-8.098zm-239.98 9.082a15.6 15.6 0 0 1 15.636-15.911h214.565l1.068 61.186c.171 9.791 8.276 17.757 18.067 17.757h61.186l5.413 310.123a15.6 15.6 0 0 1-15.636 15.911H137.79c-8.773 0-16.038-7.138-16.191-15.911zM87.273 474.479l-6.476-371.012a16.648 16.648 0 0 1 16.688-16.982h8.815l5.64 323.119c.246 14.1 11.917 25.57 26.019 25.57h258.046l.686 39.305a16.649 16.649 0 0 1-16.687 16.984h-275.45c-9.368 0-17.118-7.62-17.281-16.984z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M140.65 154.324c28.687 16.863 57.295 16.667 85.056 0a4.726 4.726 0 0 0 2.29-4.153c-.432-24.752-20.923-44.891-45.675-44.891s-44.54 20.139-44.108 44.891a4.93 4.93 0 0 0 2.437 4.153zm41.84-39.385c18.507 0 33.978 14.343 35.695 32.499-23.377 13.138-46.412 13.142-70.256 0 1.084-18.156 16.054-32.499 34.561-32.499zM182.225 99.733c15.13 0 27.225-12.308 26.961-27.438s-12.789-27.438-27.919-27.438-27.221 12.308-26.957 27.438 12.785 27.438 27.915 27.438zm-.789-45.216c9.805 0 17.92 7.976 18.091 17.779s-7.665 17.779-17.471 17.779c-9.801 0-17.916-7.976-18.087-17.779s7.666-17.779 17.467-17.779zM226.012 210.207c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l.701 40.135h-6.334c-2.67 0-4.792 2.162-4.745 4.83s2.244 4.83 4.914 4.83h210.075c2.669 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83h-6.334L367.82 150.15c-.094-5.381-4.547-9.758-9.929-9.758h-35.029a9.566 9.566 0 0 0-9.588 9.758l1.749 100.192h-16.88l-1.288-73.803c-.094-5.381-4.547-9.758-9.929-9.758h-35.034a9.566 9.566 0 0 0-9.588 9.758l1.288 73.803h-16.88zm-8.959 40.134h-35.222l-.613-40.234h35.034c.057 0 .1.042.101.099zm105.978-100.29h35.029c.052 0 .1.045.101.099l1.749 100.192h-35.222zm-70.97 26.388h35.034c.052 0 .1.045.101.099l1.288 73.803h-35.227zM169.768 334.478a27.776 27.776 0 0 0 27.837-28.334c-.273-15.626-13.205-28.336-28.826-28.336a27.778 27.778 0 0 0-27.842 28.336c.272 15.623 13.205 28.334 28.831 28.334zm-.821-47.011c10.296 0 18.819 8.379 18.998 18.677a18.305 18.305 0 0 1-18.346 18.675c-10.301 0-18.823-8.376-19.003-18.675s8.05-18.677 18.351-18.677zM208.292 296.374c.047 2.667 2.244 4.83 4.914 4.83h182.286a4.728 4.728 0 0 0 4.745-4.83c-.047-2.667-2.244-4.83-4.914-4.83H213.037a4.728 4.728 0 0 0-4.745 4.83zM213.547 320.742h140.036c2.67 0 4.792-2.163 4.745-4.83s-2.244-4.83-4.914-4.83H213.378c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83zM170.966 403.157c15.621 0 28.11-12.711 27.837-28.336-.273-15.623-13.205-28.334-28.826-28.334a27.777 27.777 0 0 0-27.842 28.334c.273 15.625 13.206 28.336 28.831 28.336zm-.82-47.011c10.296 0 18.819 8.376 18.998 18.675a18.307 18.307 0 0 1-18.346 18.677c-10.301 0-18.823-8.379-19.003-18.677a18.306 18.306 0 0 1 18.351-18.675zM396.522 360.223H214.236a4.727 4.727 0 0 0-4.745 4.83c.047 2.667 2.244 4.83 4.914 4.83H396.69a4.728 4.728 0 0 0 4.745-4.83c-.046-2.668-2.244-4.83-4.913-4.83zM354.613 379.761H214.577c-2.67 0-4.792 2.163-4.745 4.83s2.244 4.83 4.914 4.83h140.036a4.728 4.728 0 0 0 4.745-4.83c-.047-2.668-2.245-4.83-4.914-4.83z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path fill-rule=\"evenodd\" d=\"M460.913 179.849c-2.507 24.675-3.344 50.249-6.503 74.898-1.31 10.222-2.343 18.387-4.52 28.686-3.081 14.577-5.171 21.396-11.481 34.129-2.778 5.606-9.36 13.466-13.773 18.058-14.516 15.106-36.846 26.571-53.751 45.495-15.439 17.284-22.211 34.68-25.025 57.338-.336 2.702-.642 4.611-2.435 7.041-2.714 3.68-6.427 4.906-10.674 4.956-25.005.107-49.901-.401-75.012.493-.264-4.452-.653-8.857-.527-13.51a5.471 5.471 0 0 0-.04-.745c-.469-4.001.042-8.633-.516-13.349-.337-2.844-.37-19.582-.378-22.166-.025-8.142-.797-17.128 2.79-24.63 1.484-3.134 3.231-6.13 5.431-8.949a18.619 18.619 0 0 0 1.742-2.429c3.823-6.189 9.952-10.399 11.905-13.269 1.384-2.034 4.005-3.838 4.371-4.52.665-1.232 2.086-2.635 3.472-4.137-3.753 2.502-3.309 1.696-5.311 2.842-1.673.991-3.369 2.005-4.566 2.194l-6.881 4.492c-6.893 5.052-14.236 11.952-18.276 19.777-1.735-3.47-4.403-7.95-6.772-10.937-2.478-3.126-.998-2.274-3.884-5.237-3.956-4.06-10.038-8.607-14.082-12.455l-5.792-5.42c-5.833-5.233-30.616-24.474-32.513-26.595-2.625-2.935-6.241-5.267-9.419-7.803-1.535-1.226-3.019-2.498-4.561-3.712l-35.933-28.405-1.988-1.513c.962-2.261 3.469-11.776 3.999-14.289.447-2.04.871-4.096 1.598-6.027 1.262-3.394 6.386-31.466 7.253-33.911.837-2.391 1.917-7.546 2.761-10.439 2.346-8.037 10.021-31.053 13.842-37.864 2.91-5.187 5.887-7.358 11.911-8.347 4.443-.73 7.974-.374 12.444 1.461 3.168 1.301 3.01 1.065 6.228 3.1 1.403.887 7.399 3.445 9.184 4.056 6.012 2.058 6.586 2.361 12.759 3.443 4.248.745 8.62 1.149 12.954 1.077 3.838-.064 11.143-.632 15.251-2.246a17.813 17.813 0 0 0 3.776-2.12c4.001 3.513 8.268 4.381 13.292 5.145 14.442 2.198 27.954-.75 40.706-7.419 3.352-1.764 8.311-5.035 11.458-5.517 4.79-.734 4.151-1.097 9.339-.499 9.748 1.124 12.441 7.888 15.795 16.431 5.806 14.788 7.798 20.773 11.688 36.369l3.449 14.036c.235 1.089.315 2.194.659 3.254.562 1.782 1.306 3.506 1.467 5.431.012.092.046.195.086.281.694 1.448.414 3.25 1.249 5.03.462.985 1.388 7.645 1.478 8.468.425 3.883 1.546 7.102 1.736 10.37.482 8.307 1.557 5.146 2.229 10.88.209 1.782.582 1.618.877 2.355l-34.942 29.895-30.462 26.692c-1.481 1.286-11.811 10.136-10.708 10.014.991-.435 2.223-1.621 3.111-1.845-.149.315-.281.624-.418.934-.342.545-1.422 1.403.825.069-1.374 1.229-5.127 4.402-5.998 5.569 9.403-4.101 26.332-19.624 29.666-20.803 1.957-.692 13.712-10.988 17.571-13.687 4.394-3.071 8.668-6.376 13-9.562 4.331-3.203 8.622-6.486 12.925-9.768 2.523-1.92 12.802-10.171 14.409-10.599 2.973-.792 5.291-2.106 9.046-2.2 4.523-.113 9.531 1.681 12.891 4.83a6.322 6.322 0 0 0 3.117 1.564c-.171.399 1.099.895 1.048 1.684-.035.545.45 4.335-.057 4.583-.734.36-.292.643-.332 1.025l-.51 2.246c-.616 2.356-3.34 5.24-5.317 6.56l-12.421 8.342c-1.409.971-7.093 6.205-7.775 6.485l-6.589 5.145c-.59.498-1.117 1.071-1.713 1.558l-9.258 7.442-5.563 4.532-1.685 1.805c-.263.252-.624.389-.813.733-.315.584-.51 1.324-1.094 1.599-.029.011-.052.046-.057.086-.102.67-.88.619-1.014 1.455-.108.674-2.211 1.843-3.306 3.615-.824 1.335-2.235 1.654-2.274 2.498-.089 1.91-1.113 1.692-.9 2.618.169.731-.376.659-.269.945.172.504.034.739-.029 1.077l2.939 1.341c3.837.619 7.281-1.097 8.559-1.106 2.65-.018 9.574-5.49 10.049-5.735l8.37-5.832 9.419-8.009 5.512-4.887c.298-.235.516-.579.814-.837 2.297-1.952 6.22-5.089 7.969-7.093.115-.155 8.756-6.857 11.326-9.447 1.402-1.413 5.152-6.464 5.299-8.296.039-.479.48-.167.602-1.432.068-.707 1.291-3.674 1.037-7.196-.102-1.405-.106-2.738-.854-4.268-1.138-2.33-2.453-4.323-4.492-5.935 9.803-10.814 12.204-19.017 15.944-31.7l19.634-67.066c1.204-4.108 1.518-7.418 6.422-8.961 5.195-1.631 12.78.479 12.78 6.196zM225.334 452.083c5.984.606 12.157.77 18.282 1.071.226-14.184.495-57.431 3.088-68.51l1.513-5.598-.487-1.34c-4.71-12.093-17.556-21.28-27.683-28.961-1.954-1.473-3.776-2.968-5.701-4.412-1.982-1.392-3.965-2.79-5.947-4.182l-35.36-25.942-30.583-23.553c-2.736-2.104-7.055-5.138-9.264-7.184l-6.503-4.48c-6.494-3.462-16.075-2.374-21.594 2.916a5.747 5.747 0 0 1-5.672 1.34c-.148 1.628.154 3.956.527 5.5.343 1.42.775 5.306 1.593 6.256.499.58.07.647.309.768.271.137 1.42 2.55 3.592 3.988 4.65 3.281 9.61 7.679 14.541 10.461l5.237 3.839c.315.218.693.355.997.59l6.073 4.177 10.032 7.236 12.226 10.799c4.476 4.458 2.54 3.495 4.417 6.302l1.427 3.122c1.073 2.619.582 3.444.08 6.119-.338.012-.608-.063-1.043.229-.268.183-.298-.375-.985-.04-.874.426-.945-.625-2.761-.246-.815.17-1.441-1.117-2.973-1.61-1.942-.625-3.634-2.403-4.291-2.343-.797.073-1.107-.76-1.661-.648-.034.012-.069 0-.097-.029-.407-.504-1.169-.504-1.81-.676-.384-.098-.602-.424-.911-.625l-2.16-1.197-5.718-4.32-9.448-7.202c-.624-.464-1.306-.842-1.919-1.295l-6.577-5.162c-.59-.808-1.593-1.071-2.292-1.742-.418-.395-.905-.704-1.386-1.031-4.975-3.337-4.978-3.737-9.385-7.729l-9.482-8.702c-3.694-3.82-6.686-10.751-6.491-16.03.029-.793-.401-1.481.321-2.166l.728-3.117c1.612-4.946 2.08-3.853 2.916-6.13.582-1.584.545-1.862 1.266-1.862-7.06-8.388-9.763-14.941-12.69-24.888L59.55 178.219c-1.984-6.559-12.399-7.83-17.463-2.979-2.4 2.3-2.078 3.824-1.69 7.242l1.049 10.857c.172 4.211.527 8.359.877 12.53.915 10.956 1.437 21.839 2.44 32.949.258 2.899.653 5.781.951 8.668 2.508 24.784 7.475 57.52 23.106 78.261 13.676 18.147 29.532 26.229 47.145 40.717 7.519 6.185 12.102 10.597 18.185 17.761 12.417 14.624 20.095 34.466 21.696 53.465.712 8.453 5.29 12.738 13.796 12.862 17.09.25 33.949.496 51.041 1.209 1.575.064 3.139.179 4.651.322zM80.747 200.325c-.052.561-.034 1.134-.063 1.696l12.518 45.381c2.271 8.041 3.927 14.002 9.121 21.135 8.562-4.741 19.184-5.167 28.125-1.238-.391-3.639-1.105-2.256-.298-8.416.414-3.163-.051-6.783.435-10.748l.751-8.806c-.292-2.033.444-3.711.246-5.357a.983.983 0 0 1 .006-.286c.464-1.959.298-3.884.355-5.832.048-1.412.702-3.796.796-4.91.644-7.571 3.749-21.04 6.176-28.228.418-1.255.67-2.572 1.089-3.833l5.299-15.114c5.819-15.21 10.201-27.052 26.698-30.685 5.547-1.222 13.343-1.313 18.482.487 3.46 1.215 6.881 2.229 9.906 3.982.968.562 1.919 1.134 2.87 1.707l5.976 2.509c8.909 3.439 17.724 5.63 27.38 4.727l4.457-.728c2.808-.994 3.749-4.107 1.421-6.629-3.415-3.7-10.649-6.689-15.257-9.155l-24.687-12.845c-1.584-.84-3.085-1.117-4.245-2.492-.456-.54-2.964-1.704-4.154-2.481-.688-.447-1.501-.733-2.24-1.129l-11.006-6.371c-2.419-1.666-7.288-2.824-7.786-3.976-.257-.594-3.65-2.376-3.93-2.475-1.951-.691-1.714-1.073-2.636-.894-3.553.689-5.816.613-9.447.613-7.502 0-17.231-4.38-22.419-9.556-.998.352-1.377.111-2.412.888-1.478 1.109-4.522 2.02-4.881 2.756-.41.841-1.196.656-1.513 1.324-.017.034-.046.074-.08.08-.699.246-1.06.997-1.524 1.57l-1.455 1.037c-1.776 1.955-4.193 3.702-5.598 5.162-1.562 1.624-1.557 1.313-2.991 3.037-2.235 2.686-4.226 5.052-6.079 8.072l-3.34 6.382-2.865 7.305c-.688 1.077-.751 2.378-1.266 3.512-.616 1.357-.89 2.959-1.335 4.285-1.712 5.107-2.801 7.596-4.807 12.616l-2.509 6.589c-2.08 4.965-5.618 18.064-7.385 24-.234.76.105 1.401-.768 1.931-.477.289-1.787 6.109-2.859 7.998-.238.424-.226.922-.272 1.403zm176.425-46.658c-.224 1.461.321 3.145 1.455 4.205 1.06.986 1.674 1.076 2.83 1.312 6.764 1.383 13.123 1.254 19.812-.292 5.095-1.384 12.875-4.149 17.6-6.801 2.369-1.33 5.089-3.153 7.792-4.245 11.794-4.814 27.786-4.579 37.223 4.417 2.335 2.226 3.128 3.263 4.956 5.855 3.097 4.393 8.296 17.583 10.49 23.547 2.485 6.755 7.313 23.851 8.33 31.361.04.241.103.498.155.739.63 2.882 1.226 5.763 1.713 8.651.979 5.873 2.944 21.619 2.28 26.406-.275 2.109-.241 4.245-.241 6.382-.026 3.585-.775 11.038-1.45 14.632 9.002-5.065 21.021-4.523 29.78.814a.633.633 0 0 0 .08-.098c4.902-6.857 6.342-9.819 8.457-17.365l1.673-5.374c1.237-5.39 13.436-47.689 13.389-48.097l-3.426-6.491c-1.473-2.904-3.197-10.35-3.632-11.16-.61-1.136-.119-1.143-.373-1.507l-4.744-14.014c-1.614-4.833-3.486-11.198-5.466-15.813l-1.266-2.698-2.796-7.23c-.183-.458-.481-.888-.653-1.346l-3.798-8.588-4.663-7.465c-1.957-2.791-8.542-10.812-11.069-12.816l-9.883-7.282c-.699-.548-.189-.646-2.423-2.166l-2.71-2.063c-3.601 3.101-9.688 6.84-13.922 8.204-7.573 2.253-14.68 2.405-22.275.343l-10.874 7.54c-12.273 8.389-16.353 10.557-29.19 17.291l-6.159 3.243c-1.995 1.268-2.62 1.169-3.294 1.627-1.576 1.106-3.386 1.805-5.076 2.744-4.697 2.604-15.141 7.101-17.795 11.407zm217.325 25.053c-.365-8.086-6.447-14.922-13.704-17.48-7.665-2.701-17.241-1.644-23.725 3.575-5.867 4.723-6.647 10.091-8.508 16.786-.752-2.878-1.333-6.659-2.206-9.762-2.488-9.326-5.378-22.669-8.743-31.488-.497-1.298-1.374-2.796-1.782-4.262-.344-1.243-1.186-2.286-1.392-3.592l-3.237-8.45c-1.514-2.97-5.804-9.832-7.723-12.278-4.467-5.526-10.182-12.4-16.741-15.32-.394-.175-1.323-1.022-2.039-1.203-.928-.247-1.931-.292-2.681-.888-.034-.029-.092-.034-.132-.034-.974.032-1.461-.779-2.51-.664-.711.077-3.816-1.566-6.405-1.782 3.8-5.137 5.53-11.555 6.205-17.818.314-2.917-.205-10.901-1.541-13.55-.394-.78.29-.491-.762-2.526-.195-.384-.344-.779-.498-1.18-1.485-4.023-5.528-10.031-9.058-12.77-4.339-3.367-10.562-5.824-15.984-6.021-2.38-.087-6.097-.272-8.296.625-.867.354.401.509.55.842-.449.9-.724.608-.143 1.043-.475.097-1.524.216-1.834.59 1.085 1.204 3.479 2.042 5.059 1.942.157-.01 2.117.47 2.263.997.242.877 2.905.513 4.228 1.661.739.642 5.361 3.98 6.044 4.961.5.719 1.46 1.439 1.478 1.954.039 1.084.701 1.182 1.301 2.08 3.51 5.252 4.688 9.248 4.767 15.406.028 2.175-.682 6.129-1.57 8.193-1.697 3.945-2.819 5.434-5.712 8.525-4.135 4.418-13.685 8.013-19.668 7.385-1.345-.141-2.808-.013-4.056-.607-1.15-.548-3.397-.768-6.359-2.653-4.039-2.569-7.517-5.499-9.585-9.986a24.396 24.396 0 0 1-2.515-9.236c-.011-.607-.206-1.209-.137-1.816.775-6.117.327-4.531 2.177-10.095 1.29-3.882 1.987-3.877 2.292-4.687.373-.991.423-1.673 1.341-2.498.244-.219-.279-.168.894-1.249 1.231-1.134-.345-.616 2.899-3.18l3.787-2.618c1.638-1.392 4.245-1.457 4.91-2.246 1.409-1.669 2.983-1.205 3.615-2.103.496-.704 1.194-.332 1.346-.642.269-.516.734-.642 1.203-.888-1.109-.575-1.041-1.024-1.421-1.278-1.624-1.083-.771-1.591-3.438-2.166-2.757-.594-7.031-.618-9.751.126-1.583.433-5.58 1.448-6.875 2.131-8.405 4.434-12.873 11.156-16.3 19.726-1.186 3.295-2.103 8.757-2.103 12.169 0 8.277 2.027 14.679 6.709 21.851 3.419 5.238 8.815 9.723 14.352 12.438-1.489.867-4.63 2.78-6.107 3.277l-11.728 5.002c-1.215.558-5.921 2.932-6.749 2.962-1.726.062-3.017 1.186-4.555 1.914l-30.302 14.564c-4.381 2.124-9.446 4.645-13.085 8.284-4.578-4.07-11.358-6.898-16.798-9.482l-7.585-3.512c-.66-.216-1.145-.81-3.3-1.656l-6.302-3.002c-13.295-6.325-17.141-8.137-31.425-13.017l-9.373-3.134c3.229-1.28 7.323-3.766 10.026-6.033 3.694-3.098 8.072-8.729 10.146-13.171 3.062-6.555 3.924-10.991 3.976-17.961.035-4.708-.854-9.274-2.59-13.658-1.056-2.667-2.752-4.905-4.297-7.219-2.294-3.435-2.856-2.626-4.681-4.853l-1.003-.728c-2.083-1.805-1.094-.922-3.203-2.2l-2.681-1.828c-5.237-3.23-5.791-2.279-8.794-3.587-.873-.38-3.099-1.086-4.022-.842-2.746.727-4.317.034-5.07.722-.678.618-1.461.217-1.656.481-.355.493-.871.573-1.386.768 1.226.707.982 1.047 1.432 1.415 1.302 1.065.839 1.319 1.255 1.587.527.327.997.842 1.513 1.152 2.271 1.399 7.77 4.825 8.932 6.697.542.873 5.176 5.007 7.276 8.909 2.079 3.865 2.107 3.546 3.042 7.7 1.429 6.347-.041 13.761-3.449 19.227-2.912 4.67-8.248 9.125-13.624 10.645l-4.005.894c-1.848.153-6.937.202-8.794-.573-.495-.206-2.584-.242-5.827-1.879-4.744-2.395-7.272-5.086-10.152-9.745-1.657-2.681-3.344-7.494-3.65-10.708-.495-5.201.471-7.494.441-8.811-.006-.28.335-.587.562-1.788.578-3.06 3.828-8.119 6.01-10.708 1.414-1.678 2.137-2.859 3.902-4.509 2.698-2.522 2.705-2.703 6.394-5.076 2.923-1.88 5.242-2.141 7.293-3.214.85-.444-.471-.472-.67-.774.524-1.168.649-.64.029-1.054.559-.161 1.711-.372 2.091-.779-.589-.589-2.863-1.307-3.672-1.289-1.632.036-5.601 1.168-6.21.745-.935-.649-3.933 1.615-5.804 2.103-6.287 1.64-11.479 7.347-12.169 7.557-1.413.43-1.743 1.506-2.561 2.532-.361.453-.768.871-1.123 1.335-4.294 5.949-7.115 14.249-7.185 21.674-.073 7.837 2.078 15.04 5.987 21.799l-1.822-.046c-5.205.757-10.323 3.589-14.449 6.766-.837.645-.841.362-2.704 1.931-4.389 3.697-7.348 6.436-10.725 11.275-2.762 3.958-5.135 8.205-7.104 12.593l-1.874 5.97c-.441 1.386-.951 2.75-1.467 4.114-.189.476-.247 1.003-.395 1.484l-1.856 5.477c-.399 1.79-.65 1.719-.894 2.756-1.465 6.361-3.697 12.527-5.523 18.798-.486 1.784-3.436 14.016-3.351 14.879.044.452-.375.2-.407 1.541l-.263 1.375c-1.672-6.397-2.823-11.854-8.193-16.574-6.889-6.056-17.244-7.495-25.735-4.681-8.564 2.839-15.361 10.857-15.263 20.488l.653 7.941c.63 7.585 1.077 15.274 1.593 22.991l2.074 26.566c.516 7.408 1.627 14.73 2.28 22.218.898 10.303 4.3 27.759 6.949 37.578 4.498 16.668 10.245 29.566 21.204 42.505 29.397 34.71 71.557 41.277 80.163 95.695.949 6.001.824 9.71 3.885 15.377 4.969 9.201 14.404 13.952 24.423 13.979l5.259-.074c4.681-.263 9.287-.722 14.168-.59.235.011.498-.006.722-.029 4.181-.467 8.37.033 13.028-.521 2.7-.321 19.321-.385 21.616-.378 7.688.023 14.293-.487 21.696-.648 1.456 1.78 3.323 2.593 5.729 2.676l29.459.109c.636 0 1.278-.012 1.891.017 8.657.391 19.372.19 28.296.263l23.175.195c14.354-.222 25.81-10.315 27.5-24.418 1.386-11.569 3.31-20.94 8.628-31.763 15.985-32.532 52.266-44.509 73.626-73.024 5.502-7.346 8.09-11.435 11.888-20.344 4.33-10.158 8.087-23.226 9.929-34.049.895-5.263 2.142-11.899 2.739-17.13 1.082-9.49 2.541-23.84 2.916-32.994l.751-10.972c.833-12.645 1.45-26.224 2.635-38.804.069-.706.236-2.299.144-3.663z\" clip-rule=\"evenodd\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:27:32', '2026-07-11 10:27:32', '', 10, 'https://mrarif.me/essie/?p=384', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:28:01', '2026-07-11 10:28:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:01', '2026-07-11 10:28:01', '', 10, 'https://mrarif.me/essie/?p=386', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(387, 1, '2026-07-11 10:28:02', '2026-07-11 10:28:02', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:02', '2026-07-11 10:28:02', '', 10, 'https://mrarif.me/essie/?p=387', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:28:02', '2026-07-11 10:28:02', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:02', '2026-07-11 10:28:02', '', 10, 'https://mrarif.me/essie/?p=388', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(389, 1, '2026-07-11 10:28:48', '2026-07-11 10:28:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:48', '2026-07-11 10:28:48', '', 10, 'https://mrarif.me/essie/?p=389', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:28:48', '2026-07-11 10:28:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:48', '2026-07-11 10:28:48', '', 10, 'https://mrarif.me/essie/?p=390', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2026-07-11 10:28:49', '2026-07-11 10:28:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:28:49', '2026-07-11 10:28:49', '', 10, 'https://mrarif.me/essie/?p=391', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:25', '2026-07-11 10:29:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:25', '2026-07-11 10:29:25', '', 10, 'https://mrarif.me/essie/?p=392', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:25', '2026-07-11 10:29:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:25', '2026-07-11 10:29:25', '', 10, 'https://mrarif.me/essie/?p=393', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:26', '2026-07-11 10:29:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:26', '2026-07-11 10:29:26', '', 10, 'https://mrarif.me/essie/?p=394', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:54', '2026-07-11 10:29:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:54', '2026-07-11 10:29:54', '', 10, 'https://mrarif.me/essie/?p=395', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:54', '2026-07-11 10:29:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:54', '2026-07-11 10:29:54', '', 10, 'https://mrarif.me/essie/?p=396', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:29:54', '2026-07-11 10:29:54', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:29:54', '2026-07-11 10:29:54', '', 10, 'https://mrarif.me/essie/?p=397', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(398, 1, '2026-07-11 10:30:30', '2026-07-11 10:30:30', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:30:30', '2026-07-11 10:30:30', '', 10, 'https://mrarif.me/essie/?p=398', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:30:31', '2026-07-11 10:30:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:30:31', '2026-07-11 10:30:31', '', 10, 'https://mrarif.me/essie/?p=399', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:30:31', '2026-07-11 10:30:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:30:31', '2026-07-11 10:30:31', '', 10, 'https://mrarif.me/essie/?p=400', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:31:23', '2026-07-11 10:31:23', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:31:23', '2026-07-11 10:31:23', '', 10, 'https://mrarif.me/essie/?p=401', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(402, 1, '2026-07-11 10:31:23', '2026-07-11 10:31:23', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:31:23', '2026-07-11 10:31:23', '', 10, 'https://mrarif.me/essie/?p=402', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2026-07-11 10:31:23', '2026-07-11 10:31:23', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:31:23', '2026-07-11 10:31:23', '', 10, 'https://mrarif.me/essie/?p=403', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(404, 1, '2026-07-11 10:32:00', '2026-07-11 10:32:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:00', '2026-07-11 10:32:00', '', 10, 'https://mrarif.me/essie/?p=404', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(405, 1, '2026-07-11 10:32:00', '2026-07-11 10:32:00', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:00', '2026-07-11 10:32:00', '', 10, 'https://mrarif.me/essie/?p=405', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(406, 1, '2026-07-11 10:32:01', '2026-07-11 10:32:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:01', '2026-07-11 10:32:01', '', 10, 'https://mrarif.me/essie/?p=406', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:25', '2026-07-11 10:32:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:25', '2026-07-11 10:32:25', '', 10, 'https://mrarif.me/essie/?p=407', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:25', '2026-07-11 10:32:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:25', '2026-07-11 10:32:25', '', 10, 'https://mrarif.me/essie/?p=408', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:26', '2026-07-11 10:32:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:26', '2026-07-11 10:32:26', '', 10, 'https://mrarif.me/essie/?p=409', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:37', '2026-07-11 10:32:37', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:37', '2026-07-11 10:32:37', '', 10, 'https://mrarif.me/essie/?p=410', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:37', '2026-07-11 10:32:37', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:37', '2026-07-11 10:32:37', '', 10, 'https://mrarif.me/essie/?p=411', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:32:37', '2026-07-11 10:32:37', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:32:37', '2026-07-11 10:32:37', '', 10, 'https://mrarif.me/essie/?p=412', 0, 'revision', '', 0),
(413, 1, '2026-07-11 10:38:30', '2026-07-11 10:38:30', '', 'svgexport-15 - 2026-07-11T163830.713', '', 'inherit', 'closed', 'closed', '', 'svgexport-15-2026-07-11t163830-713', '', '', '2026-07-11 10:38:30', '2026-07-11 10:38:30', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/svgexport-15-2026-07-11T163830.713.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:39:26', '2026-07-11 10:39:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:26', '2026-07-11 10:39:26', '', 10, 'https://mrarif.me/essie/?p=414', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:39:26', '2026-07-11 10:39:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:26', '2026-07-11 10:39:26', '', 10, 'https://mrarif.me/essie/?p=415', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(416, 1, '2026-07-11 10:39:27', '2026-07-11 10:39:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:27', '2026-07-11 10:39:27', '', 10, 'https://mrarif.me/essie/?p=416', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(417, 1, '2026-07-11 10:39:45', '2026-07-11 10:39:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:45', '2026-07-11 10:39:45', '', 10, 'https://mrarif.me/essie/?p=417', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:39:45', '2026-07-11 10:39:45', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:45', '2026-07-11 10:39:45', '', 10, 'https://mrarif.me/essie/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:39:46', '2026-07-11 10:39:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:39:46', '2026-07-11 10:39:46', '', 10, 'https://mrarif.me/essie/?p=419', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:42:19', '2026-07-11 10:42:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:42:19', '2026-07-11 10:42:19', '', 10, 'https://mrarif.me/essie/?p=420', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:42:20', '2026-07-11 10:42:20', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:42:20', '2026-07-11 10:42:20', '', 10, 'https://mrarif.me/essie/?p=421', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:42:20', '2026-07-11 10:42:20', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:42:20', '2026-07-11 10:42:20', '', 10, 'https://mrarif.me/essie/?p=422', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(423, 1, '2026-07-11 10:43:38', '2026-07-11 10:43:38', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:43:38', '2026-07-11 10:43:38', '', 10, 'https://mrarif.me/essie/?p=423', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(424, 1, '2026-07-11 10:43:38', '2026-07-11 10:43:38', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:43:38', '2026-07-11 10:43:38', '', 10, 'https://mrarif.me/essie/?p=424', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:43:38', '2026-07-11 10:43:38', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:43:38', '2026-07-11 10:43:38', '', 10, 'https://mrarif.me/essie/?p=425', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(426, 1, '2026-07-11 10:46:01', '2026-07-11 10:46:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:46:01', '2026-07-11 10:46:01', '', 10, 'https://mrarif.me/essie/?p=426', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:46:01', '2026-07-11 10:46:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:46:01', '2026-07-11 10:46:01', '', 10, 'https://mrarif.me/essie/?p=427', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:46:02', '2026-07-11 10:46:02', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:46:02', '2026-07-11 10:46:02', '', 10, 'https://mrarif.me/essie/?p=428', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:48:21', '2026-07-11 10:48:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:48:21', '2026-07-11 10:48:21', '', 10, 'https://mrarif.me/essie/?p=429', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:48:21', '2026-07-11 10:48:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:48:21', '2026-07-11 10:48:21', '', 10, 'https://mrarif.me/essie/?p=430', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:48:21', '2026-07-11 10:48:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:48:21', '2026-07-11 10:48:21', '', 10, 'https://mrarif.me/essie/?p=431', 0, 'revision', '', 0),
(432, 1, '2026-07-11 10:49:22', '2026-07-11 10:49:22', '', '2148962386 (1)', '', 'inherit', 'closed', 'closed', '', '2148962386-1', '', '', '2026-07-11 10:49:22', '2026-07-11 10:49:22', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:49:58', '2026-07-11 10:49:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:49:58', '2026-07-11 10:49:58', '', 10, 'https://mrarif.me/essie/?p=433', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:49:58', '2026-07-11 10:49:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:49:58', '2026-07-11 10:49:58', '', 10, 'https://mrarif.me/essie/?p=434', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:49:59', '2026-07-11 10:49:59', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:49:59', '2026-07-11 10:49:59', '', 10, 'https://mrarif.me/essie/?p=435', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(436, 1, '2026-07-11 10:50:15', '2026-07-11 10:50:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:50:15', '2026-07-11 10:50:15', '', 10, 'https://mrarif.me/essie/?p=436', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:50:15', '2026-07-11 10:50:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:50:15', '2026-07-11 10:50:15', '', 10, 'https://mrarif.me/essie/?p=437', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:50:15', '2026-07-11 10:50:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:50:15', '2026-07-11 10:50:15', '', 10, 'https://mrarif.me/essie/?p=438', 0, 'revision', '', 0),
(439, 1, '2026-07-11 10:53:29', '2026-07-11 10:53:29', '', 'Payment Options', '', 'inherit', 'closed', 'closed', '', 'payment-options', '', '', '2026-07-11 10:53:29', '2026-07-11 10:53:29', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg', 0, 'attachment', 'image/jpeg', 0),
(440, 1, '2026-07-11 10:53:47', '2026-07-11 10:53:47', '', 'Payment Options (2)', '', 'inherit', 'closed', 'closed', '', 'payment-options-2', '', '', '2026-07-11 10:53:47', '2026-07-11 10:53:47', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(441, 1, '2026-07-11 10:53:55', '2026-07-11 10:53:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:53:55', '2026-07-11 10:53:55', '', 10, 'https://mrarif.me/essie/?p=441', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:53:55', '2026-07-11 10:53:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:53:55', '2026-07-11 10:53:55', '', 10, 'https://mrarif.me/essie/?p=442', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:53:56', '2026-07-11 10:53:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:53:56', '2026-07-11 10:53:56', '', 10, 'https://mrarif.me/essie/?p=443', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:54:32', '2026-07-11 10:54:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:54:32', '2026-07-11 10:54:32', '', 10, 'https://mrarif.me/essie/?p=444', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:54:32', '2026-07-11 10:54:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:54:32', '2026-07-11 10:54:32', '', 10, 'https://mrarif.me/essie/?p=445', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:54:32', '2026-07-11 10:54:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:54:32', '2026-07-11 10:54:32', '', 10, 'https://mrarif.me/essie/?p=446', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:57:47', '2026-07-11 10:57:47', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:57:47', '2026-07-11 10:57:47', '', 10, 'https://mrarif.me/essie/?p=450', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:57:46', '2026-07-11 10:57:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:57:46', '2026-07-11 10:57:46', '', 10, 'https://mrarif.me/essie/?p=448', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(449, 1, '2026-07-11 10:57:46', '2026-07-11 10:57:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:57:46', '2026-07-11 10:57:46', '', 10, 'https://mrarif.me/essie/?p=449', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:59:04', '2026-07-11 10:59:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:59:04', '2026-07-11 10:59:04', '', 10, 'https://mrarif.me/essie/?p=451', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:59:04', '2026-07-11 10:59:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options-2.jpeg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:59:04', '2026-07-11 10:59:04', '', 10, 'https://mrarif.me/essie/?p=452', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 10:59:04', '2026-07-11 10:59:04', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 10:59:04', '2026-07-11 10:59:04', '', 10, 'https://mrarif.me/essie/?p=453', 0, 'revision', '', 0),
(454, 1, '2026-07-11 11:00:35', '2026-07-11 11:00:35', '', '2150216370 (1)', '', 'inherit', 'closed', 'closed', '', '2150216370-1', '', '', '2026-07-11 11:00:35', '2026-07-11 11:00:35', '', 10, 'https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:00:43', '2026-07-11 11:00:43', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:00:43', '2026-07-11 11:00:43', '', 10, 'https://mrarif.me/essie/?p=455', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:00:44', '2026-07-11 11:00:44', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2148962386-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:00:44', '2026-07-11 11:00:44', '', 10, 'https://mrarif.me/essie/?p=456', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(457, 1, '2026-07-11 11:00:44', '2026-07-11 11:00:44', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:00:44', '2026-07-11 11:00:44', '', 10, 'https://mrarif.me/essie/?p=457', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:02:34', '2026-07-11 11:02:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:02:34', '2026-07-11 11:02:34', '', 10, 'https://mrarif.me/essie/?p=458', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(459, 1, '2026-07-11 11:02:34', '2026-07-11 11:02:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:02:34', '2026-07-11 11:02:34', '', 10, 'https://mrarif.me/essie/?p=459', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:02:34', '2026-07-11 11:02:34', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:02:34', '2026-07-11 11:02:34', '', 10, 'https://mrarif.me/essie/?p=460', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:03:14', '2026-07-11 11:03:14', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:03:14', '2026-07-11 11:03:14', '', 10, 'https://mrarif.me/essie/?p=461', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:03:14', '2026-07-11 11:03:14', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:03:14', '2026-07-11 11:03:14', '', 10, 'https://mrarif.me/essie/?p=462', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:03:15', '2026-07-11 11:03:15', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:03:15', '2026-07-11 11:03:15', '', 10, 'https://mrarif.me/essie/?p=463', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(464, 1, '2026-07-11 11:04:28', '2026-07-11 11:04:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:04:28', '2026-07-11 11:04:28', '', 10, 'https://mrarif.me/essie/?p=464', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:04:29', '2026-07-11 11:04:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:04:29', '2026-07-11 11:04:29', '', 10, 'https://mrarif.me/essie/?p=465', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(532, 1, '2026-07-11 11:33:58', '2026-07-11 11:33:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:58', '2026-07-11 11:33:58', '', 10, 'https://mrarif.me/essie/?p=532', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(501, 1, '2026-07-11 11:19:36', '2026-07-11 11:19:36', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:19:36', '2026-07-11 11:19:36', '', 10, 'https://mrarif.me/essie/?p=501', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:04:29', '2026-07-11 11:04:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:04:29', '2026-07-11 11:04:29', '', 10, 'https://mrarif.me/essie/?p=466', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:05:26', '2026-07-11 11:05:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:26', '2026-07-11 11:05:26', '', 10, 'https://mrarif.me/essie/?p=467', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:05:26', '2026-07-11 11:05:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:26', '2026-07-11 11:05:26', '', 10, 'https://mrarif.me/essie/?p=468', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(469, 1, '2026-07-11 11:05:27', '2026-07-11 11:05:27', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:27', '2026-07-11 11:05:27', '', 10, 'https://mrarif.me/essie/?p=469', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(470, 1, '2026-07-11 11:05:48', '2026-07-11 11:05:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:48', '2026-07-11 11:05:48', '', 10, 'https://mrarif.me/essie/?p=470', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(471, 1, '2026-07-11 11:05:49', '2026-07-11 11:05:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:49', '2026-07-11 11:05:49', '', 10, 'https://mrarif.me/essie/?p=471', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(472, 1, '2026-07-11 11:05:49', '2026-07-11 11:05:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:05:49', '2026-07-11 11:05:49', '', 10, 'https://mrarif.me/essie/?p=472', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(473, 1, '2026-07-11 11:06:19', '2026-07-11 11:06:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:19', '2026-07-11 11:06:19', '', 10, 'https://mrarif.me/essie/?p=473', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(474, 1, '2026-07-11 11:06:19', '2026-07-11 11:06:19', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:19', '2026-07-11 11:06:19', '', 10, 'https://mrarif.me/essie/?p=474', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(475, 1, '2026-07-11 11:06:20', '2026-07-11 11:06:20', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:20', '2026-07-11 11:06:20', '', 10, 'https://mrarif.me/essie/?p=475', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(476, 1, '2026-07-11 11:06:48', '2026-07-11 11:06:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:48', '2026-07-11 11:06:48', '', 10, 'https://mrarif.me/essie/?p=476', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(477, 1, '2026-07-11 11:06:48', '2026-07-11 11:06:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>					<p>Making Every Touch Loving</p>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:48', '2026-07-11 11:06:48', '', 10, 'https://mrarif.me/essie/?p=477', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(478, 1, '2026-07-11 11:06:49', '2026-07-11 11:06:49', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:06:49', '2026-07-11 11:06:49', '', 10, 'https://mrarif.me/essie/?p=478', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(479, 1, '2026-07-11 11:07:21', '2026-07-11 11:07:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:07:21', '2026-07-11 11:07:21', '', 10, 'https://mrarif.me/essie/?p=479', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(480, 1, '2026-07-11 11:07:21', '2026-07-11 11:07:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:07:21', '2026-07-11 11:07:21', '', 10, 'https://mrarif.me/essie/?p=480', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(481, 1, '2026-07-11 11:07:21', '2026-07-11 11:07:21', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:07:21', '2026-07-11 11:07:21', '', 10, 'https://mrarif.me/essie/?p=481', 0, 'revision', '', 0),
(482, 1, '2026-07-11 11:13:34', '2026-07-11 11:13:34', '<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'publish', 'closed', 'closed', '', 'elementor-footer-482', '', '', '2026-07-11 11:55:27', '2026-07-11 11:55:27', '', 0, 'https://mrarif.me/essie/?post_type=elementor_library&#038;p=482', 0, 'elementor_library', '', 0),
(483, 1, '2026-07-11 11:08:12', '2026-07-11 11:08:12', '', 'Elementor Footer #482', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:08:12', '2026-07-11 11:08:12', '', 482, 'https://mrarif.me/essie/?p=483', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(484, 1, '2026-07-11 11:10:28', '2026-07-11 11:10:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:10:28', '2026-07-11 11:10:28', '', 10, 'https://mrarif.me/essie/?p=484', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(485, 1, '2026-07-11 11:10:28', '2026-07-11 11:10:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:10:28', '2026-07-11 11:10:28', '', 10, 'https://mrarif.me/essie/?p=485', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(486, 1, '2026-07-11 11:10:29', '2026-07-11 11:10:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:10:29', '2026-07-11 11:10:29', '', 10, 'https://mrarif.me/essie/?p=486', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(487, 1, '2026-07-11 11:11:01', '2026-07-11 11:11:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:01', '2026-07-11 11:11:01', '', 10, 'https://mrarif.me/essie/?p=487', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(488, 1, '2026-07-11 11:11:01', '2026-07-11 11:11:01', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:01', '2026-07-11 11:11:01', '', 10, 'https://mrarif.me/essie/?p=488', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(489, 1, '2026-07-11 11:11:02', '2026-07-11 11:11:02', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:02', '2026-07-11 11:11:02', '', 10, 'https://mrarif.me/essie/?p=489', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(490, 1, '2026-07-11 11:11:41', '2026-07-11 11:11:41', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:41', '2026-07-11 11:11:41', '', 10, 'https://mrarif.me/essie/?p=490', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(491, 1, '2026-07-11 11:11:42', '2026-07-11 11:11:42', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:42', '2026-07-11 11:11:42', '', 10, 'https://mrarif.me/essie/?p=491', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(492, 1, '2026-07-11 11:11:42', '2026-07-11 11:11:42', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:11:42', '2026-07-11 11:11:42', '', 10, 'https://mrarif.me/essie/?p=492', 0, 'revision', '', 0),
(493, 1, '2026-07-11 11:13:51', '2026-07-11 11:13:51', '', 'LOGO (13)', '', 'inherit', 'closed', 'closed', '', 'logo-13', '', '', '2026-07-11 11:13:51', '2026-07-11 11:13:51', '', 482, 'https://mrarif.me/essie/wp-content/uploads/2026/07/LOGO-13.jpg', 0, 'attachment', 'image/jpeg', 0),
(494, 1, '2026-07-11 11:14:19', '2026-07-11 11:14:19', '', 'New Project - 2026-07-11T171422.480', '', 'inherit', 'closed', 'closed', '', 'new-project-2026-07-11t171422-480', '', '', '2026-07-11 11:14:19', '2026-07-11 11:14:19', '', 482, 'https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg', 0, 'attachment', 'image/jpeg', 0),
(495, 1, '2026-07-11 11:16:52', '2026-07-11 11:16:52', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />', 'Elementor Footer #482', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:16:52', '2026-07-11 11:16:52', '', 482, 'https://mrarif.me/essie/?p=495', 0, 'revision', '', 0),
(496, 1, '2026-07-11 11:16:52', '2026-07-11 11:16:52', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Payment\n									</li>\n						</ul>', 'Elementor Footer #482', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:16:52', '2026-07-11 11:16:52', '', 482, 'https://mrarif.me/essie/?p=496', 0, 'revision', '', 0),
(497, 1, '2026-07-11 11:18:16', '2026-07-11 11:18:16', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Payment\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Elementor Footer #482', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:18:16', '2026-07-11 11:18:16', '', 482, 'https://mrarif.me/essie/?p=497', 0, 'revision', '', 0),
(498, 1, '2026-07-11 11:18:38', '2026-07-11 11:18:38', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Payment\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Elementor Footer #482', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:18:38', '2026-07-11 11:18:38', '', 482, 'https://mrarif.me/essie/?p=498', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(499, 1, '2026-07-11 11:19:36', '2026-07-11 11:19:36', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:19:36', '2026-07-11 11:19:36', '', 10, 'https://mrarif.me/essie/?p=499', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(500, 1, '2026-07-11 11:19:36', '2026-07-11 11:19:36', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n									<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.								<a href=\"https://mrarif.me/essie/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:19:36', '2026-07-11 11:19:36', '', 10, 'https://mrarif.me/essie/?p=500', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(502, 1, '2026-07-11 11:20:02', '2026-07-11 11:20:02', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:20:02', '2026-07-11 11:20:02', '', 10, 'https://mrarif.me/essie/?p=502', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(503, 1, '2026-07-11 11:20:03', '2026-07-11 11:20:03', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:20:03', '2026-07-11 11:20:03', '', 10, 'https://mrarif.me/essie/?p=503', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(504, 1, '2026-07-11 11:20:03', '2026-07-11 11:20:03', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:20:03', '2026-07-11 11:20:03', '', 10, 'https://mrarif.me/essie/?p=504', 0, 'revision', '', 0),
(507, 1, '2026-07-11 12:19:22', '2026-07-11 11:22:35', '', 'Payment Options', '', 'publish', 'closed', 'closed', '', 'payment-options', '', '', '2026-07-11 12:19:22', '2026-07-11 12:19:22', '', 0, 'https://mrarif.me/essie/?p=507', 4, 'nav_menu_item', '', 0),
(508, 1, '2026-07-11 11:23:24', '2026-07-11 11:23:24', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Payment\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:23:24', '2026-07-11 11:23:24', '', 482, 'https://mrarif.me/essie/?p=508', 0, 'revision', '', 0),
(509, 1, '2026-07-11 11:23:24', '2026-07-11 11:23:24', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Payment\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:23:24', '2026-07-11 11:23:24', '', 482, 'https://mrarif.me/essie/?p=509', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(511, 1, '2026-07-11 11:24:23', '2026-07-11 11:24:23', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />																					<a href=\"http://Payment\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:24:23', '2026-07-11 11:24:23', '', 136, 'https://mrarif.me/essie/?p=511', 0, 'revision', '', 0),
(512, 1, '2026-07-11 11:25:06', '2026-07-11 11:25:06', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"http://Payment\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:25:06', '2026-07-11 11:25:06', '', 136, 'https://mrarif.me/essie/?p=512', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(516, 1, '2026-07-11 11:29:47', '2026-07-11 11:29:47', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:29:47', '2026-07-11 11:29:47', '', 10, 'https://mrarif.me/essie/?p=516', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(514, 1, '2026-07-11 11:29:46', '2026-07-11 11:29:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:29:46', '2026-07-11 11:29:46', '', 10, 'https://mrarif.me/essie/?p=514', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(515, 1, '2026-07-11 11:29:46', '2026-07-11 11:29:46', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:29:46', '2026-07-11 11:29:46', '', 10, 'https://mrarif.me/essie/?p=515', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(517, 1, '2026-07-11 11:30:31', '2026-07-11 11:30:31', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:31', '2026-07-11 11:30:31', '', 10, 'https://mrarif.me/essie/?p=517', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(518, 1, '2026-07-11 11:30:32', '2026-07-11 11:30:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:32', '2026-07-11 11:30:32', '', 10, 'https://mrarif.me/essie/?p=518', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2026-07-11 11:30:32', '2026-07-11 11:30:32', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:32', '2026-07-11 11:30:32', '', 10, 'https://mrarif.me/essie/?p=519', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(520, 1, '2026-07-11 11:30:56', '2026-07-11 11:30:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:56', '2026-07-11 11:30:56', '', 10, 'https://mrarif.me/essie/?p=520', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(521, 1, '2026-07-11 11:30:56', '2026-07-11 11:30:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:56', '2026-07-11 11:30:56', '', 10, 'https://mrarif.me/essie/?p=521', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(522, 1, '2026-07-11 11:30:57', '2026-07-11 11:30:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:30:57', '2026-07-11 11:30:57', '', 10, 'https://mrarif.me/essie/?p=522', 0, 'revision', '', 0),
(523, 1, '2026-07-11 11:31:23', '2026-07-11 11:31:23', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:31:23', '2026-07-11 11:31:23', '', 136, 'https://mrarif.me/essie/?p=523', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(524, 1, '2026-07-11 11:31:53', '2026-07-11 11:31:53', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:31:53', '2026-07-11 11:31:53', '', 482, 'https://mrarif.me/essie/?p=524', 0, 'revision', '', 0),
(525, 1, '2026-07-11 11:32:22', '2026-07-11 11:32:22', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:32:22', '2026-07-11 11:32:22', '', 482, 'https://mrarif.me/essie/?p=525', 0, 'revision', '', 0),
(526, 1, '2026-07-11 11:32:51', '2026-07-11 11:32:51', '<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />																<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:32:51', '2026-07-11 11:32:51', '', 482, 'https://mrarif.me/essie/?p=526', 0, 'revision', '', 0),
(527, 1, '2026-07-11 11:33:40', '2026-07-11 11:33:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:40', '2026-07-11 11:33:40', '', 10, 'https://mrarif.me/essie/?p=527', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 11:33:40', '2026-07-11 11:33:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"https://mrarif.me/essie/services/\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:40', '2026-07-11 11:33:40', '', 10, 'https://mrarif.me/essie/?p=528', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(529, 1, '2026-07-11 11:33:41', '2026-07-11 11:33:41', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:41', '2026-07-11 11:33:41', '', 10, 'https://mrarif.me/essie/?p=529', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(530, 1, '2026-07-11 11:33:58', '2026-07-11 11:33:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:58', '2026-07-11 11:33:58', '', 10, 'https://mrarif.me/essie/?p=530', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(531, 1, '2026-07-11 11:33:58', '2026-07-11 11:33:58', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\" target=\"_blank\" rel=\"nofollow\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 11:33:58', '2026-07-11 11:33:58', '', 10, 'https://mrarif.me/essie/?p=531', 0, 'revision', '', 0),
(534, 1, '2026-07-11 11:41:35', '2026-07-11 11:41:35', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:41:35', '2026-07-11 11:41:35', '', 136, 'https://mrarif.me/essie/?p=534', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(535, 1, '2026-07-11 11:48:56', '2026-07-11 11:48:56', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:48:56', '2026-07-11 11:48:56', '', 136, 'https://mrarif.me/essie/?p=535', 0, 'revision', '', 0),
(536, 1, '2026-07-11 11:49:25', '2026-07-11 11:49:25', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:49:25', '2026-07-11 11:49:25', '', 136, 'https://mrarif.me/essie/?p=536', 0, 'revision', '', 0),
(537, 1, '2026-07-11 11:50:39', '2026-07-11 11:50:39', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:50:39', '2026-07-11 11:50:39', '', 136, 'https://mrarif.me/essie/?p=537', 0, 'revision', '', 0),
(538, 1, '2026-07-11 11:52:13', '2026-07-11 11:52:13', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:52:13', '2026-07-11 11:52:13', '', 136, 'https://mrarif.me/essie/?p=538', 0, 'revision', '', 0),
(542, 1, '2026-07-11 11:55:27', '2026-07-11 11:55:27', '<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:55:27', '2026-07-11 11:55:27', '', 482, 'https://mrarif.me/essie/?p=542', 0, 'revision', '', 0),
(539, 1, '2026-07-11 11:53:22', '2026-07-11 11:53:22', '<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />								</a>\n																<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:53:22', '2026-07-11 11:53:22', '', 482, 'https://mrarif.me/essie/?p=539', 0, 'revision', '', 0),
(540, 1, '2026-07-11 11:54:48', '2026-07-11 11:54:48', '<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/New-Project-2026-07-11T171422.480.jpg\" alt=\"\" />								</a>\n																<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/essie/\">\n											Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#about\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/essie/#paymeny\">\n											Payment\n											</a>\n									</li>\n						</ul>\n				© 2026 Essie\'s Loving Touch · Home Companion Services', 'Footer', '', 'inherit', 'closed', 'closed', '', '482-revision-v1', '', '', '2026-07-11 11:54:48', '2026-07-11 11:54:48', '', 482, 'https://mrarif.me/essie/?p=540', 0, 'revision', '', 0),
(541, 1, '2026-07-11 11:54:59', '2026-07-11 11:54:59', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:54:59', '2026-07-11 11:54:59', '', 136, 'https://mrarif.me/essie/?p=541', 0, 'revision', '', 0),
(543, 1, '2026-07-11 11:56:43', '2026-07-11 11:56:43', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:56:43', '2026-07-11 11:56:43', '', 136, 'https://mrarif.me/essie/?p=543', 0, 'revision', '', 0),
(544, 1, '2026-07-11 11:57:00', '2026-07-11 11:57:00', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 11:57:00', '2026-07-11 11:57:00', '', 136, 'https://mrarif.me/essie/?p=544', 0, 'revision', '', 0),
(545, 1, '2026-07-11 11:59:18', '2026-07-11 11:59:18', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-07-11 11:59:18', '2026-07-11 11:59:18', '', 6, 'https://mrarif.me/essie/?p=545', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(546, 1, '2026-07-11 12:02:25', '2026-07-11 12:02:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:02:25', '2026-07-11 12:02:25', '', 10, 'https://mrarif.me/essie/?p=546', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(547, 1, '2026-07-11 12:02:25', '2026-07-11 12:02:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:02:25', '2026-07-11 12:02:25', '', 10, 'https://mrarif.me/essie/?p=547', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(548, 1, '2026-07-11 12:02:26', '2026-07-11 12:02:26', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:02:26', '2026-07-11 12:02:26', '', 10, 'https://mrarif.me/essie/?p=548', 0, 'revision', '', 0),
(549, 1, '2026-07-11 12:04:10', '2026-07-11 12:04:10', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:04:10', '2026-07-11 12:04:10', '', 136, 'https://mrarif.me/essie/?p=549', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(550, 1, '2026-07-11 12:04:25', '2026-07-11 12:04:25', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:04:25', '2026-07-11 12:04:25', '', 136, 'https://mrarif.me/essie/?p=550', 0, 'revision', '', 0),
(551, 1, '2026-07-11 12:04:56', '2026-07-11 12:04:56', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:04:56', '2026-07-11 12:04:56', '', 136, 'https://mrarif.me/essie/?p=551', 0, 'revision', '', 0),
(552, 1, '2026-07-11 12:06:23', '2026-07-11 12:06:23', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:06:23', '2026-07-11 12:06:23', '', 136, 'https://mrarif.me/essie/?p=552', 0, 'revision', '', 0),
(553, 1, '2026-07-11 12:06:42', '2026-07-11 12:06:42', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:06:42', '2026-07-11 12:06:42', '', 136, 'https://mrarif.me/essie/?p=553', 0, 'revision', '', 0),
(554, 1, '2026-07-11 12:07:04', '2026-07-11 12:07:04', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:07:04', '2026-07-11 12:07:04', '', 136, 'https://mrarif.me/essie/?p=554', 0, 'revision', '', 0),
(555, 1, '2026-07-11 12:08:00', '2026-07-11 12:08:00', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:08:00', '2026-07-11 12:08:00', '', 136, 'https://mrarif.me/essie/?p=555', 0, 'revision', '', 0),
(556, 1, '2026-07-11 12:08:17', '2026-07-11 12:08:17', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:08:17', '2026-07-11 12:08:17', '', 136, 'https://mrarif.me/essie/?p=556', 0, 'revision', '', 0),
(557, 1, '2026-07-11 12:08:42', '2026-07-11 12:08:42', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:08:42', '2026-07-11 12:08:42', '', 136, 'https://mrarif.me/essie/?p=557', 0, 'revision', '', 0),
(558, 1, '2026-07-11 12:10:41', '2026-07-11 12:10:41', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:10:41', '2026-07-11 12:10:41', '', 136, 'https://mrarif.me/essie/?p=558', 0, 'revision', '', 0),
(559, 1, '2026-07-11 12:10:56', '2026-07-11 12:10:56', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:10:56', '2026-07-11 12:10:56', '', 136, 'https://mrarif.me/essie/?p=559', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(560, 1, '2026-07-11 12:12:11', '2026-07-11 12:12:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:12:11', '2026-07-11 12:12:11', '', 10, 'https://mrarif.me/essie/?p=560', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-11 12:12:11', '2026-07-11 12:12:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:12:11', '2026-07-11 12:12:11', '', 10, 'https://mrarif.me/essie/?p=561', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(562, 1, '2026-07-11 12:12:11', '2026-07-11 12:12:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-11 12:12:11', '2026-07-11 12:12:11', '', 10, 'https://mrarif.me/essie/?p=562', 0, 'revision', '', 0),
(563, 1, '2026-07-11 12:14:14', '2026-07-11 12:14:14', '<ul>\n							<li>\n											<a href=\"tel:xxxxxxxxx\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										xxx.xxx.xxx\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-11 12:14:14', '2026-07-11 12:14:14', '', 136, 'https://mrarif.me/essie/?p=563', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(564, 1, '2026-07-13 10:22:50', '2026-07-13 10:22:50', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:22:50', '2026-07-13 10:22:50', '', 10, 'https://mrarif.me/essie/?p=564', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(565, 1, '2026-07-13 10:22:51', '2026-07-13 10:22:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:22:51', '2026-07-13 10:22:51', '', 10, 'https://mrarif.me/essie/?p=565', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-13 10:22:51', '2026-07-13 10:22:51', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:22:51', '2026-07-13 10:22:51', '', 10, 'https://mrarif.me/essie/?p=566', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(567, 1, '2026-07-13 10:23:12', '2026-07-13 10:23:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:23:12', '2026-07-13 10:23:12', '', 10, 'https://mrarif.me/essie/?p=567', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(568, 1, '2026-07-13 10:23:12', '2026-07-13 10:23:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:23:12', '2026-07-13 10:23:12', '', 10, 'https://mrarif.me/essie/?p=568', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-13 10:23:13', '2026-07-13 10:23:13', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:23:13', '2026-07-13 10:23:13', '', 10, 'https://mrarif.me/essie/?p=569', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(570, 1, '2026-07-13 10:24:12', '2026-07-13 10:24:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:12', '2026-07-13 10:24:12', '', 10, 'https://mrarif.me/essie/?p=570', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(571, 1, '2026-07-13 10:24:13', '2026-07-13 10:24:13', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:13', '2026-07-13 10:24:13', '', 10, 'https://mrarif.me/essie/?p=571', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(572, 1, '2026-07-13 10:24:13', '2026-07-13 10:24:13', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:13', '2026-07-13 10:24:13', '', 10, 'https://mrarif.me/essie/?p=572', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(573, 1, '2026-07-13 10:24:30', '2026-07-13 10:24:30', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:30', '2026-07-13 10:24:30', '', 10, 'https://mrarif.me/essie/?p=573', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(574, 1, '2026-07-13 10:24:30', '2026-07-13 10:24:30', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:30', '2026-07-13 10:24:30', '', 10, 'https://mrarif.me/essie/?p=574', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(575, 1, '2026-07-13 10:24:30', '2026-07-13 10:24:30', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:24:30', '2026-07-13 10:24:30', '', 10, 'https://mrarif.me/essie/?p=575', 0, 'revision', '', 0),
(578, 1, '2026-07-13 10:35:09', '2026-07-13 10:35:09', '<ul>\n							<li>\n											<a href=\"tel:8774801449\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										(877) 480-1449\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:Essieslovingtouch@gmail.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										Essieslovingtouch@gmail.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-13 10:35:09', '2026-07-13 10:35:09', '', 136, 'https://mrarif.me/essie/?p=578', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(577, 1, '2026-07-13 10:34:54', '2026-07-13 10:34:54', '<ul>\n							<li>\n											<a href=\"tel:8774801449\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										(877) 480-1449\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:info@essie.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										info@essie.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-13 10:34:54', '2026-07-13 10:34:54', '', 136, 'https://mrarif.me/essie/?p=577', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(582, 1, '2026-07-13 10:37:57', '2026-07-13 10:37:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:37:57', '2026-07-13 10:37:57', '', 10, 'https://mrarif.me/essie/?p=582', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(580, 1, '2026-07-13 10:37:56', '2026-07-13 10:37:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:37:56', '2026-07-13 10:37:56', '', 10, 'https://mrarif.me/essie/?p=580', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-07-13 10:37:56', '2026-07-13 10:37:56', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:37:56', '2026-07-13 10:37:56', '', 10, 'https://mrarif.me/essie/?p=581', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(583, 1, '2026-07-13 10:48:25', '2026-07-13 10:48:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:48:25', '2026-07-13 10:48:25', '', 10, 'https://mrarif.me/essie/?p=583', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(584, 1, '2026-07-13 10:48:25', '2026-07-13 10:48:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:48:25', '2026-07-13 10:48:25', '', 10, 'https://mrarif.me/essie/?p=584', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(585, 1, '2026-07-13 10:48:25', '2026-07-13 10:48:25', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:48:25', '2026-07-13 10:48:25', '', 10, 'https://mrarif.me/essie/?p=585', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(586, 1, '2026-07-13 10:49:08', '2026-07-13 10:49:08', '<ul>\n							<li>\n											<a href=\"tel:8774801449\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512.076 512.076\" style=\"enable-background:new 0 0 512.076 512.076;\" xml:space=\"preserve\"><g transform=\"translate(-1 -1)\">	<g>		<g>			<path d=\"M499.639,396.039l-103.646-69.12c-13.153-8.701-30.784-5.838-40.508,6.579l-30.191,38.818    c-3.88,5.116-10.933,6.6-16.546,3.482l-5.743-3.166c-19.038-10.377-42.726-23.296-90.453-71.04s-60.672-71.45-71.049-90.453    l-3.149-5.743c-3.161-5.612-1.705-12.695,3.413-16.606l38.792-30.182c12.412-9.725,15.279-27.351,6.588-40.508l-69.12-103.646    C109.12,1.056,91.25-2.966,77.461,5.323L34.12,31.358C20.502,39.364,10.511,52.33,6.242,67.539    c-15.607,56.866-3.866,155.008,140.706,299.597c115.004,114.995,200.619,145.92,259.465,145.92    c13.543,0.058,27.033-1.704,40.107-5.239c15.212-4.264,28.18-14.256,36.181-27.878l26.061-43.315    C517.063,422.832,513.043,404.951,499.639,396.039z M494.058,427.868l-26.001,43.341c-5.745,9.832-15.072,17.061-26.027,20.173    c-52.497,14.413-144.213,2.475-283.008-136.32S8.29,124.559,22.703,72.054c3.116-10.968,10.354-20.307,20.198-26.061    l43.341-26.001c5.983-3.6,13.739-1.855,17.604,3.959l37.547,56.371l31.514,47.266c3.774,5.707,2.534,13.356-2.85,17.579    l-38.801,30.182c-11.808,9.029-15.18,25.366-7.91,38.332l3.081,5.598c10.906,20.002,24.465,44.885,73.967,94.379    c49.502,49.493,74.377,63.053,94.37,73.958l5.606,3.089c12.965,7.269,29.303,3.898,38.332-7.91l30.182-38.801    c4.224-5.381,11.87-6.62,17.579-2.85l103.637,69.12C495.918,414.126,497.663,421.886,494.058,427.868z\"></path>			<path d=\"M291.161,86.39c80.081,0.089,144.977,64.986,145.067,145.067c0,4.713,3.82,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.099-89.503-72.63-162.035-162.133-162.133c-4.713,0-8.533,3.82-8.533,8.533S286.448,86.39,291.161,86.39z\"></path>			<path d=\"M291.161,137.59c51.816,0.061,93.806,42.051,93.867,93.867c0,4.713,3.821,8.533,8.533,8.533    c4.713,0,8.533-3.82,8.533-8.533c-0.071-61.238-49.696-110.863-110.933-110.933c-4.713,0-8.533,3.82-8.533,8.533    S286.448,137.59,291.161,137.59z\"></path>			<path d=\"M291.161,188.79c23.552,0.028,42.638,19.114,42.667,42.667c0,4.713,3.821,8.533,8.533,8.533s8.533-3.82,8.533-8.533    c-0.038-32.974-26.759-59.696-59.733-59.733c-4.713,0-8.533,3.82-8.533,8.533S286.448,188.79,291.161,188.79z\"></path>		</g>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>						\n										(877) 480-1449\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"mailto:Essieslovingtouch@gmail.com\">\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=\"m499.509 83.651-.006-.007-.012-.01a40.863 40.863 0 0 0 -28.6-11.583h-429.781a40.87 40.87 0 0 0 -28.367 11.36l-.014.013-.008.007-.005.005-.009.01a40.719 40.719 0 0 0 -12.707 29.712v285.685a41.136 41.136 0 0 0 41.11 41.11h429.779a41.135 41.135 0 0 0 41.111-41.11v-285.685a40.768 40.768 0 0 0 -12.491-29.507zm-170.6 172.073 162.318-150.58a21.813 21.813 0 0 1 1.508 8.014v285.685a21.8 21.8 0 0 1 -1.5 7.969zm141.98-164.417a21.924 21.924 0 0 1 6.025.849l-220.746 204.782-116.55-108.117-104.258-96.734a21.942 21.942 0 0 1 5.75-.78zm-450.133 315.506a21.837 21.837 0 0 1 -1.5-7.97v-285.685a21.808 21.808 0 0 1 1.6-8.251l105.662 98.033 56.732 52.627zm20.354 13.88a21.871 21.871 0 0 1 -6.07-.862l162.369-151.131 52.21 48.433a9.632 9.632 0 0 0 13.1 0l52.038-48.275 162.2 150.974a21.91 21.91 0 0 1 -6.071.861z\"></path></svg>						\n										Essieslovingtouch@gmail.com\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/essie/\">\n							<img width=\"595\" height=\"325\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/logo-35.png\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/essie/#paymeny\">\n									Payment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2026-07-13 10:49:08', '2026-07-13 10:49:08', '', 136, 'https://mrarif.me/essie/?p=586', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(587, 1, '2026-07-13 10:49:37', '2026-07-13 10:49:37', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:37', '2026-07-13 10:49:37', '', 10, 'https://mrarif.me/essie/?p=587', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(588, 1, '2026-07-13 10:49:37', '2026-07-13 10:49:37', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:37', '2026-07-13 10:49:37', '', 10, 'https://mrarif.me/essie/?p=588', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(589, 1, '2026-07-13 10:49:38', '2026-07-13 10:49:38', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:38', '2026-07-13 10:49:38', '', 10, 'https://mrarif.me/essie/?p=589', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(590, 1, '2026-07-13 10:49:47', '2026-07-13 10:49:47', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:47', '2026-07-13 10:49:47', '', 10, 'https://mrarif.me/essie/?p=590', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(591, 1, '2026-07-13 10:49:47', '2026-07-13 10:49:47', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:47', '2026-07-13 10:49:47', '', 10, 'https://mrarif.me/essie/?p=591', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(592, 1, '2026-07-13 10:49:48', '2026-07-13 10:49:48', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:49:48', '2026-07-13 10:49:48', '', 10, 'https://mrarif.me/essie/?p=592', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(593, 1, '2026-07-13 10:50:35', '2026-07-13 10:50:35', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:50:35', '2026-07-13 10:50:35', '', 10, 'https://mrarif.me/essie/?p=593', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(594, 1, '2026-07-13 10:50:36', '2026-07-13 10:50:36', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:50:36', '2026-07-13 10:50:36', '', 10, 'https://mrarif.me/essie/?p=594', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(595, 1, '2026-07-13 10:50:36', '2026-07-13 10:50:36', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:50:36', '2026-07-13 10:50:36', '', 10, 'https://mrarif.me/essie/?p=595', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(596, 1, '2026-07-13 10:52:28', '2026-07-13 10:52:28', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:52:28', '2026-07-13 10:52:28', '', 10, 'https://mrarif.me/essie/?p=596', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(597, 1, '2026-07-13 10:52:29', '2026-07-13 10:52:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:52:29', '2026-07-13 10:52:29', '', 10, 'https://mrarif.me/essie/?p=597', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(598, 1, '2026-07-13 10:52:29', '2026-07-13 10:52:29', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 10:52:29', '2026-07-13 10:52:29', '', 10, 'https://mrarif.me/essie/?p=598', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(599, 1, '2026-07-13 11:07:53', '2026-07-13 11:07:53', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:07:53', '2026-07-13 11:07:53', '', 10, 'https://mrarif.me/essie/?p=599', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(600, 1, '2026-07-13 11:07:53', '2026-07-13 11:07:53', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:07:53', '2026-07-13 11:07:53', '', 10, 'https://mrarif.me/essie/?p=600', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(601, 1, '2026-07-13 11:07:53', '2026-07-13 11:07:53', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:07:53', '2026-07-13 11:07:53', '', 10, 'https://mrarif.me/essie/?p=601', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(602, 1, '2026-07-13 11:10:57', '2026-07-13 11:10:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:10:57', '2026-07-13 11:10:57', '', 10, 'https://mrarif.me/essie/?p=602', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(603, 1, '2026-07-13 11:10:57', '2026-07-13 11:10:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:10:57', '2026-07-13 11:10:57', '', 10, 'https://mrarif.me/essie/?p=603', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(604, 1, '2026-07-13 11:10:57', '2026-07-13 11:10:57', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:10:57', '2026-07-13 11:10:57', '', 10, 'https://mrarif.me/essie/?p=604', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(605, 1, '2026-07-13 11:11:39', '2026-07-13 11:11:39', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:11:39', '2026-07-13 11:11:39', '', 10, 'https://mrarif.me/essie/?p=605', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(606, 1, '2026-07-13 11:11:39', '2026-07-13 11:11:39', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:11:39', '2026-07-13 11:11:39', '', 10, 'https://mrarif.me/essie/?p=606', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(607, 1, '2026-07-13 11:11:40', '2026-07-13 11:11:40', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:11:40', '2026-07-13 11:11:40', '', 10, 'https://mrarif.me/essie/?p=607', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(608, 1, '2026-07-13 11:12:10', '2026-07-13 11:12:10', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:12:10', '2026-07-13 11:12:10', '', 10, 'https://mrarif.me/essie/?p=608', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(609, 1, '2026-07-13 11:12:11', '2026-07-13 11:12:11', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:12:11', '2026-07-13 11:12:11', '', 10, 'https://mrarif.me/essie/?p=609', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(610, 1, '2026-07-13 11:12:12', '2026-07-13 11:12:12', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 11:12:12', '2026-07-13 11:12:12', '', 10, 'https://mrarif.me/essie/?p=610', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(611, 1, '2026-07-13 20:17:55', '2026-07-13 20:17:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 20:17:55', '2026-07-13 20:17:55', '', 10, 'https://mrarif.me/essie/?p=611', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(612, 1, '2026-07-13 20:17:55', '2026-07-13 20:17:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 20:17:55', '2026-07-13 20:17:55', '', 10, 'https://mrarif.me/essie/?p=612', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(613, 1, '2026-07-13 20:17:55', '2026-07-13 20:17:55', '<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																		<h3>\n					Welcome to \n				</h3>\n							<h1> Essie\'s Loving Touch</h1>					<h6>Making Every Touch Loving</h6>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas.								<a href=\"#services\">\n									Our Services\n					</a>\n																			<img width=\"991\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-83-1.jpg\" alt=\"\" />																										<img width=\"971\" height=\"1619\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/banner-29.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-us-13-1.jpg\" alt=\"\" />																<h6>About Us</h6>					<h2>Independence, Dignity &amp;  Comfort</h2>		<p>At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.<br /><br />We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.</p>													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/About-Us-3.jpeg\" alt=\"\" />													We understand that every individual has unique needs. That\'s why we provide personalized, non-medical support designed to enhance daily living and give families peace of mind. Our caring and professional companions are committed to treating every client with respect, kindness, and compassion.			<h6>About Us</h6>					<h2> Helping You Maintain Independence, Dignity &amp; Comfort</h2>		At Essie\'s Loving Touch, we are dedicated to providing compassionate, dependable, and personalized Home Companion Services throughout the State of Texas. Our mission is to help seniors and adults maintain their independence, dignity, and comfort while remaining safely in the place they call home.													<img width=\"1024\" height=\"602\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-17-1024x602.jpeg\" alt=\"\" />																										<img width=\"1500\" height=\"882\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/about-40-1.jpg\" alt=\"\" />																<h2> Our  Services</h2>		We proudly offer a variety of non-medical home companion services, including:					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m37 9.5h-4.5v1h4.5c.827 0 1.5.673 1.5 1.5v17h1v-17c0-1.378-1.121-2.5-2.5-2.5z\"></path><path d=\"m7.5 51c0 1.378 1.121 2.5 2.5 2.5h12.18v-1h-12.18c-.827 0-1.5-.673-1.5-1.5v-39c0-.827.673-1.5 1.5-1.5h4.5v-1h-4.5c-1.379 0-2.5 1.122-2.5 2.5z\"></path><path d=\"m32.5 12.5h3.5c.275 0 .5.224.5.5v17h1v-17c0-.827-.673-1.5-1.5-1.5h-3.5z\"></path><path d=\"m9.5 13v37c0 .827.673 1.5 1.5 1.5h11.18v-1h-11.18c-.275 0-.5-.224-.5-.5v-37c0-.276.225-.5.5-.5h3.5v-1h-3.5c-.827 0-1.5.673-1.5 1.5z\"></path><path d=\"m30.5 19c0-.827-.673-1.5-1.5-1.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5zm-13 0c0-.276.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5z\"></path><path d=\"m13.5 25c0 .827.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827 0-1.5.673-1.5 1.5zm4 0c0 .276-.225.5-.5.5h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5z\"></path><path d=\"m21 23.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm11.5 1.5c0 .276-.225.5-.5.5h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5z\"></path><path d=\"m17 28.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 28.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 33.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m32 33.5h-11c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-11c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h11c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m17 38.5h-2c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5zm0 2h-2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h2c.275 0 .5.224.5.5s-.225.5-.5.5z\"></path><path d=\"m21 41.5h5.53v-1h-5.53c-.275 0-.5-.224-.5-.5s.225-.5.5-.5h7.45v-1h-7.45c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5z\"></path><path d=\"m29.5 7.5h-12c-.827 0-1.5.673-1.5 1.5v4c0 .827.673 1.5 1.5 1.5h12c.827 0 1.5-.673 1.5-1.5v-4c0-.827-.673-1.5-1.5-1.5zm.5 5.5c0 .276-.225.5-.5.5h-12c-.275 0-.5-.224-.5-.5v-4c0-.276.225-.5.5-.5h12c.275 0 .5.224.5.5z\"></path><path d=\"m19.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m27.5 9.5c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zm0 2c-.275 0-.5-.224-.5-.5s.225-.5.5-.5.5.224.5.5-.225.5-.5.5z\"></path><path d=\"m42.12 35.03v-.29c0-1.235-1.005-2.24-2.24-2.24-1.229 0-2.229 1.005-2.229 2.24v.29h1v-.29c0-.684.552-1.24 1.229-1.24.684 0 1.24.556 1.24 1.24v.29z\"></path><path d=\"m35.65 34.74v.26h1v-.26c0-1.787 1.449-3.24 3.229-3.24 1.787 0 3.24 1.454 3.24 3.24v.26h1v-.26c0-2.338-1.902-4.24-4.24-4.24-2.331 0-4.229 1.902-4.229 4.24z\"></path><path d=\"m54.5 55.771 1.787-3c.597-1.004-.126-2.271-1.281-2.271h-30.011c-1.159 0-1.877 1.27-1.28 2.271l1.786 3c.269.45.76.729 1.281.729h26.437c.521 0 1.012-.279 1.281-.729zm-28.14-.512-1.786-3c-.199-.334.036-.759.421-.759h30.011c.383 0 .621.424.422.759l-1.787 3c-.089.149-.25.242-.422.242h-26.437c-.172-.001-.333-.094-.422-.242z\"></path><path d=\"m39 36.5c-7.164 0-13.331 5.343-14.345 12.429l.99.142c.944-6.597 6.685-11.571 13.355-11.571h1.76c6.68 0 12.422 4.974 13.355 11.57l.99-.141c-1.002-7.085-7.17-12.429-14.345-12.429z\"></path><path d=\"m46.304 26.646-1.415 1.414c-.584.584-.584 1.535 0 2.121.579.58 1.532.589 2.122 0l1.414-1.414c.587-.588.586-1.536 0-2.121s-1.534-.587-2.121 0zm1.414 1.415-1.414 1.414c-.194.195-.512.196-.708.001-.194-.195-.194-.513 0-.708l1.415-1.414c.196-.196.512-.196.707 0 .196.196.194.512 0 .707z\"></path><path d=\"m45.571 33.07c-.002.821.663 1.5 1.5 1.5h2c.827 0 1.5-.673 1.5-1.5s-.673-1.5-1.5-1.5h-2c-.827.001-1.5.674-1.5 1.5zm4 .001c0 .276-.225.5-.5.5h-2c-.274 0-.5-.22-.5-.5 0-.276.225-.5.5-.5h2c.276 0 .5.224.5.5z\"></path><path d=\"m43.5 28v-2c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2c0 .827.673 1.5 1.5 1.5s1.5-.673 1.5-1.5zm-2 0v-2c0-.276.225-.5.5-.5s.5.224.5.5v2c0 .276-.225.5-.5.5s-.5-.225-.5-.5z\"></path></g></g></svg>									\n					<h6>\n						Meal preparation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 74 74\" width=\"512\"><g><path d=\"m48.93 27.57h-15.81c-.21-.84-.38-1.71-.47-2.61-.38-3.73 1.27-7 2.71-9.08.98-1.43 1.5-3.1 1.5-4.84 0-2.13-.79-4.16-2.24-5.73-.09-.09-.19-.16-.31-.2-1.14-.39-1.85.35-2.31.84-.36.38-.6.61-.91.61-.32 0-.46-.13-.81-.52-.38-.43-.9-1.02-1.92-1.02s-1.55.59-1.93 1.02c-.35.39-.49.52-.81.52-.31 0-.54-.23-.9-.6-.47-.49-1.18-1.23-2.31-.85-.12.04-.23.11-.31.2-1.44 1.57-2.24 3.61-2.24 5.73 0 1.73.52 3.41 1.5 4.84 1.44 2.08 3.09 5.35 2.71 9.08-.09.9-.26 1.77-.47 2.61h-15.81c-.96 0-1.75.79-1.75 1.75v2.18c0 .81.55 1.48 1.3 1.68v30.32c0 .96.79 1.75 1.75 1.75h.5v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h17.98v2c0 .96.79 1.75 1.75 1.75h6.28c.96 0 1.75-.79 1.75-1.75v-2h.5c.96 0 1.75-.79 1.75-1.75v-30.32c.75-.2 1.3-.88 1.3-1.68v-2.18c0-.96-.79-1.75-1.75-1.75zm-26.34-12.54c-.81-1.18-1.24-2.56-1.24-3.99 0-1.67.59-3.27 1.68-4.54.12.02.27.14.6.49.43.45 1.02 1.07 1.98 1.07 1.02 0 1.55-.59 1.93-1.02.35-.39.49-.52.81-.52.31 0 .45.13.8.51.38.43.91 1.02 1.93 1.02.97 0 1.56-.62 1.99-1.07.34-.35.48-.47.61-.49 1.08 1.26 1.68 2.87 1.68 4.54 0 1.43-.43 2.81-1.24 3.99-2.28 3.29-3.3 6.77-2.97 10.08.08.84.22 1.67.4 2.46h-6.39c.18-.8.32-1.62.4-2.46.34-3.3-.69-6.79-2.97-10.07zm-15.05 14.29c0-.14.11-.25.25-.25h41.14c.14 0 .25.11.25.25v2.18c0 .14-.11.25-.25.25h-41.14c-.14 0-.25-.11-.25-.25zm10.33 37.93c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm27.76 0c0 .14-.11.25-.25.25h-6.28c-.14 0-.25-.11-.25-.25v-2h6.78zm2.25-3.75c0 .14-.11.25-.25.25h-38.54c-.14 0-.25-.11-.25-.25v-30.25h39.04z\"></path><path d=\"m11.59 61.75h33.54c.41 0 .75-.34.75-.75v-12.5-12.5c0-.41-.34-.75-.75-.75h-33.54c-.41 0-.75.34-.75.75v12.5 12.5c0 .42.34.75.75.75zm32.79-1.5h-32.04v-11h32.04zm-32.04-23.5h32.04v11h-32.04z\"></path><path d=\"m28.36 39.6c-1.46 0-2.65 1.19-2.65 2.65s1.19 2.65 2.65 2.65 2.65-1.19 2.65-2.65-1.19-2.65-2.65-2.65zm0 3.8c-.63 0-1.15-.52-1.15-1.15s.52-1.15 1.15-1.15 1.15.52 1.15 1.15-.52 1.15-1.15 1.15z\"></path><path d=\"m28.36 57.4c1.46 0 2.65-1.19 2.65-2.65s-1.19-2.65-2.65-2.65-2.65 1.19-2.65 2.65 1.19 2.65 2.65 2.65zm0-3.8c.63 0 1.15.52 1.15 1.15s-.52 1.15-1.15 1.15-1.15-.52-1.15-1.15.52-1.15 1.15-1.15z\"></path><path d=\"m28.36 19.84c.83 0 1.53-.51 1.77-1.29.68-2.17 1.64-3.45 2.48-4.42.73-.83 1.02-1.94.78-2.95-.24-1.02-.94-1.79-1.88-2.06-.9-.26-1.88-.01-2.54.66-.32.32-.53.72-.61 1.16-.08-.44-.29-.84-.61-1.16-.67-.67-1.64-.92-2.54-.66-.94.27-1.64 1.04-1.88 2.06-.24 1.01.05 2.12.78 2.95.84.97 1.8 2.25 2.48 4.42.24.78.94 1.29 1.77 1.29zm-3.57-8.32c.16-.67.59-.89.83-.96.1-.03.2-.04.3-.04.29 0 .56.11.77.32.14.14.21.32.21.51s-.07.38-.21.51c-.29.29-.29.77 0 1.06s.77.29 1.06 0c.32-.32.53-.72.61-1.16.08.44.29.84.61 1.16.29.29.77.29 1.06 0s.29-.77 0-1.06c-.14-.14-.21-.32-.21-.51s.07-.37.21-.51c.28-.28.69-.39 1.07-.28.24.07.67.28.83.96.13.54-.04 1.15-.45 1.62-1.34 1.54-2.17 3.02-2.78 4.96-.07.22-.26.24-.34.24s-.27-.02-.34-.24c-.61-1.94-1.44-3.42-2.78-4.96-.41-.47-.58-1.08-.45-1.62z\"></path><path d=\"m28.36 21.62c-.41 0-.76.34-.76.76s.34.76.76.76.76-.34.76-.76-.35-.76-.76-.76z\"></path><path d=\"m28.36 24.6c-.41 0-.76.34-.76.75s.34.76.76.76.76-.34.76-.76-.35-.75-.76-.75z\"></path><path d=\"m64.39 21.77c.84-1.15 4.96-7.29 3.08-14.52-.16-.61-.64-1.12-1.25-1.32-1.42-.46-2.47-.45-3.13.02-.61-.59-1.62-1.02-3.27-.94-1.02.04-1.8.38-2.3.99-.06.07-.1.14-.15.21-.57-.41-1.44-.68-2.75-.62s-2.17.49-2.57 1.27c-.01.05-.03.09-.05.14-.53-.37-1.09-.59-1.68-.65-1.8-.19-3.32 1.17-4.07 1.99-.27.29-.38.68-.33 1.07.06.39.29.74.63.95 5.18 3.16 5.79 11.11 5.8 11.19.02 2.24 1.27 4.2 3.1 5.22v39.3c0 1.61 1.31 2.93 2.93 2.93 1.61 0 2.91-1.31 2.91-2.93v-39.3c1.79-.99 3.01-2.85 3.1-5zm-16.88-12.58c.59-.61 1.61-1.42 2.66-1.35 2.08.13 3.76 5.21 4.11 7 .07.36.38.61.73.61.05 0 .1 0 .15-.01.41-.08.67-.47.59-.88-.37-1.91-2.06-5.64-2.09-5.68-.2-.36-.43-.99-.27-1.32.14-.27.61-.44 1.31-.47 2.13-.1 2.25.77 2.38 1.69 0 0 .55 3.3.63 4.38.03.41.4.71.8.7.41-.03.73-.39.7-.8-.08-1.15-.69-4.83-.74-5.04-.03-.2-.07-.71.21-1.05.22-.27.63-.42 1.22-.44 1.94-.1 2.36.62 2.5 1.05 0 .06.19 4.14-.54 5.95-.16.38.03.82.41.98.09.04.19.05.28.05.3 0 .58-.18.7-.47.82-2.02.67-6.59.67-6.6-.02-.18.01-.28.04-.3.14-.11.74-.16 1.8.19.13.04.23.15.26.27 1.63 6.25-1.85 11.82-2.75 13.12h-9.5c-.26-2.13-1.45-8.51-6.26-11.58zm12.29 56.89c0 .79-.63 1.43-1.41 1.43-.79 0-1.43-.64-1.43-1.43v-38.72c.45.11.93.17 1.41.17.49 0 .97-.07 1.43-.18zm-1.43-40.05c-2.24 0-4.1-1.64-4.46-3.78h8.93c-.35 2.14-2.22 3.78-4.47 3.78z\"></path><path d=\"m14.48 17.64c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m14.48 23.8c.41 0 .75-.34.75-.75v-1.76c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.76c0 .41.34.75.75.75z\"></path><path d=\"m16.68 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.34.75.75.75z\"></path><path d=\"m10.52 19.84h1.76c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-1.76c-.41 0-.75.34-.75.75s.33.75.75.75z\"></path><path d=\"m38.52 19.77c.97.42 2.2 1.05 2.47 1.33.27.27.9 1.5 1.32 2.47.12.27.39.45.69.45s.57-.18.69-.45c.42-.97 1.04-2.2 1.32-2.47.27-.28 1.5-.9 2.47-1.33.27-.12.45-.39.45-.69s-.18-.57-.45-.69c-.97-.42-2.2-1.04-2.47-1.32s-.9-1.5-1.32-2.47c-.24-.55-1.14-.55-1.38 0-.42.98-1.05 2.2-1.32 2.47s-1.5.9-2.47 1.32c-.27.12-.45.39-.45.69s.18.57.45.69zm3.54-1.63c.29-.3.64-.89.95-1.48.3.59.65 1.18.95 1.48s.9.65 1.48.95c-.59.3-1.19.66-1.48.95s-.65.89-.95 1.48c-.3-.58-.65-1.18-.95-1.48s-.9-.65-1.48-.95c.58-.31 1.18-.66 1.48-.95z\"></path></g></svg>									\n					<h6>\n						Light housekeeping and cleaning					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"outline\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><path d=\"M104,184v56H88a8,8,0,0,0-7.845,9.569L96,328.792V488a8,8,0,0,0,8,8H408a8,8,0,0,0,8-8V328.792l15.845-79.223A8,8,0,0,0,424,240H408V198.59a38.649,38.649,0,0,0-26.036-36.482L409.832,129.6a25.624,25.624,0,0,0-35.454-36.69,25.532,25.532,0,0,0-15.332-5.568A84.008,84.008,0,0,0,194.409,80H160a8,8,0,0,0-8,8v44.686l-18.343-18.343a8,8,0,0,0-11.314,0l-32,32a8,8,0,0,0,0,11.314L108.686,176l-2.343,2.343h0A7.979,7.979,0,0,0,104,184Zm100.686-40,32,32H211.314l-32-32ZM264,240V224h48v16Zm-48-48h32v48H216Zm96,6.59V208H264V192h48.574A38.693,38.693,0,0,0,312,198.59ZM160,147.313,188.686,176H131.314ZM200,192v48H120V192ZM400.155,326.431A8.026,8.026,0,0,0,400,328V480H112V328a8.026,8.026,0,0,0-.155-1.569L97.758,256H414.242ZM392,198.59V240H328V198.59A22.616,22.616,0,0,1,350.59,176h18.82A22.616,22.616,0,0,1,392,198.59ZM306.923,129.6,319.269,144H264a8,8,0,0,1,0-16h41.684C306.078,128.542,306.481,129.08,306.923,129.6Zm61.8-19.94a8,8,0,0,0,11.313,0l3.54-3.539a9.622,9.622,0,0,1,14.109,13.067L362.7,160h-8.641l-34.985-40.815a9.667,9.667,0,0,1,.5-13.067,9.623,9.623,0,0,1,13.608,0l3.539,3.539a8,8,0,0,0,11.313,0l3.54-3.539a9.623,9.623,0,0,1,13.608,0Zm-137.08-61.2A67.993,67.993,0,0,1,343.525,92.068c-.385.275-.774.541-1.147.839A25.573,25.573,0,0,0,300.817,112H264a24,24,0,0,0,0,48h68.984l2.6,3.036A38.8,38.8,0,0,0,319.332,176H264a24.025,24.025,0,0,0-4.29.4L216,132.686V88a8,8,0,0,0-5.168-7.475A68.133,68.133,0,0,1,231.641,48.459ZM168,96h32v32H168Zm-60.687,56L128,131.313,140.686,144,120,164.686Z\"></path><path d=\"M256,392a80.091,80.091,0,0,0,80-80V272H320v40a64,64,0,0,1-128,0V272H176v40A80.091,80.091,0,0,0,256,392Z\"></path></svg>									\n					<h6>\n						Grocery shopping and errands					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m112.55 288.48c0 14.5 11.8 26.3 26.3 26.3s26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3-26.3 11.8-26.3 26.3zm26.3-14.29c7.88 0 14.3 6.41 14.3 14.3 0 7.88-6.41 14.3-14.3 14.3-7.88 0-14.3-6.41-14.3-14.3s6.42-14.3 14.3-14.3zm50.59-6.83h108.3c3.31 0 6 2.69 6 6s-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.68-6 6-6zm114.3 36.25c0 3.31-2.69 6-6 6h-108.3c-3.31 0-6-2.69-6-6s2.69-6 6-6h108.3c3.31 0 6 2.69 6 6zm-164.89 33.32c-14.5 0-26.3 11.8-26.3 26.3s11.8 26.3 26.3 26.3 26.3-11.8 26.3-26.3-11.8-26.3-26.3-26.3zm0 40.59c-7.88 0-14.3-6.41-14.3-14.3 0-7.88 6.41-14.3 14.3-14.3 7.88 0 14.3 6.41 14.3 14.3s-6.41 14.3-14.3 14.3zm146.8-29.42c0 3.31-2.69 6-6 6h-90.21c-3.31 0-6-2.69-6-6s2.69-6 6-6h90.21c3.32 0 6 2.68 6 6zm-1.31 30.25c0 3.31-2.69 6-6 6h-88.9c-3.31 0-6-2.69-6-6s2.69-6 6-6h88.9c3.32 0 6 2.69 6 6zm-91.07-148.44c4.12 3.09 8.02 6 10.97 8.54 1.12.97 2.52 1.45 3.91 1.45s2.79-.48 3.91-1.45c2.95-2.54 6.84-5.45 10.96-8.54 17-12.73 40.29-30.16 40.65-52.98.14-8.91-3.23-17.33-9.5-23.69-6.33-6.44-14.81-9.98-23.83-9.98-.06 0-.12 0-.18 0-8.29 0-16.32 4.02-22.02 10.6-5.7-6.58-13.72-10.6-21.98-10.6-.06 0-.12 0-.17 0-9.06 0-17.54 3.54-23.87 9.98-6.26 6.36-9.64 14.78-9.5 23.69.36 22.82 23.65 40.25 40.65 52.98zm-22.6-68.26c4.06-4.13 9.5-6.4 15.36-6.4h.09c6.69 0 13.46 4.99 16.5 12.16.94 2.22 3.12 3.66 5.53 3.66s4.59-1.44 5.53-3.66c3.03-7.17 9.8-12.15 16.54-12.15 5.83-.05 11.33 2.25 15.41 6.4 3.99 4.05 6.14 9.41 6.05 15.08-.27 16.94-20.83 32.33-35.84 43.57-2.7 2.02-5.31 3.98-7.69 5.84-2.38-1.87-4.98-3.82-7.69-5.84-15.01-11.24-35.57-26.63-35.84-43.57-.09-5.67 2.06-11.03 6.05-15.09zm297.11 272.44-21.7-34.63v-35.83c0-31.51-19.48-58.54-47.03-69.71v-3.88c0-14.24-10.62-26.04-24.36-27.91v-155.72c0-16.14-13.13-29.27-29.27-29.27h-54.96v-14c0-3.31-2.69-6-6-6h-27.68c-3.44-23.71-24.14-42.14-48.63-42.14s-45.19 18.43-48.64 42.14h-27.68c-3.31 0-6 2.69-6 6v14h-54.96c-16.14 0-29.27 13.13-29.27 29.27v342.8c0 16.14 13.13 29.27 29.27 29.27h266.51c7.02 11.11 19.4 18.52 33.49 18.52 20.98 0 38.18-16.4 39.49-37.05h43.11c6.23 0 11.76-3.26 14.77-8.71 3.02-5.45 2.85-11.86-.46-17.15zm-80.73-144.05v.15c-5.22-1.15-10.63-1.77-16.18-1.77-5.56 0-10.96.62-16.18 1.77v-.15c0-8.92 7.26-16.18 16.18-16.18s16.18 7.26 16.18 16.18zm-24.36-183.63v156.66c-11.56 3.51-20 14.27-20 26.97v3.88c-1.7.69-3.38 1.44-5.02 2.25v-207.03h7.75c9.52 0 17.27 7.75 17.27 17.27zm-224.86-37.27h27.18c3.26 0 5.92-2.6 6-5.86.46-20 17.12-36.28 37.14-36.28 20.01 0 36.67 16.28 37.14 36.28.08 3.26 2.74 5.86 6 5.86h27.18v28.21h-140.64zm-6 40.21h152.63c3.31 0 6-2.69 6-6v-14.21h35.21v214.42c-18.21 13.74-30.01 35.55-30.01 60.07v35.84l-20.38 32.52h-179.32c-2.94 0-5.33-2.39-5.33-5.33v-337.52h35.21v14.21c-.01 3.32 2.67 6 5.99 6zm-60.96 357.13c-9.52 0-17.27-7.75-17.27-17.27v-342.8c0-9.52 7.75-17.27 17.27-17.27h7.75v337.51c0 9.56 7.78 17.33 17.33 17.33h175.43c.14 2.48.84 4.95 2.11 7.25 3.02 5.45 8.54 8.71 14.77 8.71h43.1c.14 2.23.47 4.42.97 6.54zm300 18.52c-14.36 0-26.18-11.03-27.46-25.05h54.93c-1.29 14.02-13.11 25.05-27.47 25.05zm86.88-39.57c-.91 1.65-2.39 2.52-4.27 2.52h-165.2c-1.88 0-3.36-.87-4.28-2.52-.91-1.65-.87-3.36.13-4.96l22.61-36.08c.6-.95.92-2.06.92-3.19v-37.56c0-34.86 28.36-63.21 63.21-63.21 34.86 0 63.21 28.36 63.21 63.21v37.56c0 1.13.32 2.23.92 3.19l22.61 36.09c1 1.58 1.05 3.3.14 4.95z\"></path></svg>									\n					<h6>\n						Medication reminders					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m377.26 314.26c27.16 0 43.57 29.91 29.4 52.75 18.82 6.15 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-8.02-3.57-8.02-7.99v-17.15c0-20.32 13.27-38.01 32.09-44.19-14.15-22.85 2.26-52.75 29.39-52.75zm13.32 66.44c-4.08 1.73-8.59 2.66-13.32 2.66s-9.21-.94-13.32-2.66h-1.67c-16.75 0-30.47 13.75-30.47 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-.2-44.98c-11.65-11.68-31.66-3.37-31.66 13.1 0 10.26 8.31 18.57 18.54 18.57 16.36-.01 24.86-19.94 13.12-31.67zm-13.12-33.82c-47.74 0-86.43 38.66-86.43 86.4s38.69 86.43 86.43 86.43 86.43-38.69 86.43-86.43-38.69-86.4-86.43-86.4zm-72.43 13.97c40-40 104.85-40 144.85 0s40 104.85 0 144.85-104.85 40-144.85 0c-39.99-39.99-39.99-104.85 0-144.85zm-162.85 14.4c-16.47 0-24.77 20.01-13.1 31.66 3.35 3.37 7.99 5.44 13.1 5.44 16.36 0 24.86-19.93 13.12-31.66-3.34-3.37-7.98-5.44-13.12-5.44zm-24.43-5.89c13.52-13.49 35.38-13.49 48.87 0 11.31 11.34 13.44 29 4.96 42.63 18.82 6.18 32.09 23.87 32.09 44.19v17.15c0 4.42-3.57 7.99-7.99 7.99h-106.96c-4.42 0-7.99-3.57-7.99-7.99v-17.15c0-20.32 13.27-38.04 32.09-44.19-8.48-13.63-6.38-31.29 4.93-42.63zm37.79 56.32c-4.11 1.73-8.62 2.66-13.35 2.66-4.71 0-9.21-.94-13.32-2.66h-1.64c-16.75 0-30.5 13.75-30.5 30.5v9.16h90.96v-9.16c0-16.75-13.75-30.5-30.5-30.5zm-13.36-94.82c56.58 0 102.42 45.86 102.42 102.42 0 56.58-45.84 102.42-102.42 102.42-56.55 0-102.42-45.84-102.42-102.42.01-56.55 45.87-102.42 102.42-102.42zm61.12 41.3c-33.73-33.73-88.47-33.73-122.2 0-33.76 33.76-33.76 88.47 0 122.23 33.73 33.73 88.47 33.73 122.2 0 33.76-33.76 33.76-88.47 0-122.23zm216.42-72.28h31.75v-45.07h-31.75c-3.88 0-7.14-2.81-7.82-6.52h-.03c-3.94-20.83-12.13-40.51-24.01-57.91-2.18-3.23-1.7-7.48.96-10.15v-.03l22.45-22.45-31.86-31.83-22.45 22.45c-2.89 2.89-7.43 3.09-10.57.65-8.56-5.78-17.72-10.74-27.33-14.71-9.61-4-19.7-7.03-30.19-9.01-3.83-.71-6.52-4.08-6.52-7.85v-31.76h-45.04v31.75c0 4.11-3.09 7.48-7.06 7.94-10.29 2.01-20.24 5.02-29.68 8.93-9.75 4.05-19.05 9.07-27.72 15-3.23 2.18-7.48 1.7-10.15-.96v.03l-22.48-22.45-31.83 31.83 22.45 22.45c2.89 2.89 3.12 7.43.65 10.57-5.78 8.56-10.74 17.72-14.71 27.33s-7.03 19.7-9.01 30.19c-.71 3.85-4.08 6.52-7.85 6.52v.03h-31.75v45.01l68.94.03c-13.95-76.96 44.96-147.32 122.71-147.32 77.78 0 136.69 70.36 122.74 147.32h37.16zm39.75 15.99h-86.88c-5.24 0-9.1-4.99-7.74-10.06 18.57-69.05-33.22-137.23-105.02-137.23-65.82 0-116.48 58-107.86 123.14.6 4.56 1.53 9.13 2.72 13.66 1.67 5.58-2.38 10.49-7.6 10.49h-86.91c-4.42 0-7.99-3.57-7.99-7.99v-61.06c0-4.39 3.57-7.99 7.99-7.99h33.28c4.25-18.43 11.57-35.97 21.49-51.87l-23.53-23.53c-3.12-3.12-3.12-8.19 0-11.31l43.17-43.17c3.12-3.12 8.19-3.12 11.31 0l23.53 23.53c15.93-9.96 33.47-17.25 51.87-21.5v-33.28c0-4.42 3.6-7.99 8.02-7.99h61.03c4.42 0 7.99 3.57 7.99 7.99v33.28c18.43 4.25 35.97 11.57 51.87 21.49l23.56-23.53c3.12-3.12 8.16-3.12 11.31 0l43.14 43.17c3.15 3.12 3.15 8.19 0 11.31l-23.53 23.53c9.95 15.93 17.26 33.48 21.52 51.9l33.25-.03c4.42 0 7.99 3.6 7.99 7.99v61.06c.01 4.43-3.56 8-7.98 8zm-199.65-72.65c-2.04 0-4.08-.77-5.64-2.32-13.98-13.97-36.65-13.97-50.6 0-13.97 13.95-13.97 36.62 0 50.6l56.24 56.24 56.27-56.24c13.97-13.97 13.97-36.65 0-50.6-13.98-14-36.71-13.95-50.57-.03-1.5 1.49-3.52 2.35-5.7 2.35zm0-18.54c20.41-15.28 49.27-13.44 67.58 4.9 20.21 20.21 20.21 52.98 0 73.22l-61.91 61.91c-3.12 3.12-8.19 3.12-11.31 0l-61.94-61.91c-20.21-20.24-20.21-53.01 0-73.22 18.32-18.31 47.17-20.18 67.58-4.9z\"></path></svg>									\n					<h6>\n						Companionship and social engagement					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 138 138\"><g><path d=\"m129.3 21.5c-1.7 0-21.4-.1-23-.1v-6c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6h-22.6v-6.3c0-1.4-1.2-2.6-2.6-2.6h-3c-1.4 0-2.6 1.2-2.6 2.6v6.3s-22.5.1-22.5.1c-2.6 0-4.7 2.1-4.7 4.7v22.2h-16.5l-17 16.7c-1.7 1.6-2.6 3.9-2.6 6.2v33.7c0 4.8 3.9 8.6 8.7 8.6l2.3-.1c.5 6.6 6.1 11.9 12.8 11.9s12.2-5.2 12.8-11.8h55.2c.6 6.6 6.1 11.8 12.8 11.8s12.2-5.2 12.8-11.8h3.9c4.8 0 8.6-3.9 8.6-8.6 0-2.2 0-80.8 0-78.8.1-2.6-2-4.7-4.6-4.7m-29.2-6c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-2 7.9v2.5c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.5h4.8c1.9.1 3.4 1.6 3.4 3.6v3.1h-54.8v-3.1c0-1.9 1.5-3.5 3.4-3.6h4.2v2.1c0 1.4 1.2 2.6 2.6 2.6h3c1.4 0 2.6-1.2 2.6-2.6v-2.1zm-38.4 8.7h54.7v36.5c0 2-1.6 3.6-3.6 3.6h-47.5c-2 0-3.6-1.6-3.6-3.6zm9.7-17c0-.3.3-.6.6-.6h3c.3 0 .6.3.6.6v10.5c0 .3-.3.6-.6.6h-3c-.3 0-.6-.3-.6-.6zm-61.4 51.5 16.5-16.1h15.7v19.3h-34c.3-1.2.9-2.4 1.8-3.2m19.8 56.9c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m80.9 0c-6 0-10.9-4.9-10.9-10.9s4.9-10.9 10.9-10.9 10.9 4.9 10.9 10.9-4.9 10.9-10.9 10.9m23.3-18.4c0 3.7-3 6.6-6.6 6.6h-3.9c-.4-6.7-6-12.1-12.8-12.1s-12.4 5.4-12.8 12.1h-55.3c-.4-6.7-6-12.1-12.8-12.1s-12.3 5.3-12.8 12l-2.3.1c-3.7 0-6.6-3-6.6-6.6v-33.3h34.2v21.7h1 90.7zm-89.8-13.7c0-.6 0-67.3 0-65.2 0-1.5 1.2-2.7 2.7-2.7h14.1c-.8 1-1.3 2.2-1.3 3.5v41.6c0 3.1 2.5 5.6 5.6 5.6h47.6c3.1 0 5.6-2.5 5.6-5.6v-41.6c0-1.3-.5-2.6-1.3-3.5h14.1c1.5 0 2.7 1.2 2.7 2.7v65.2z\"></path><path d=\"m27.6 106c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11.1c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 2.4-2 4.5-4.5 4.5\"></path><path d=\"m35.6 77.1h-11.4c-.6 0-1 .4-1 1s.4 1 1 1h11.5c.6 0 1-.4 1-1-.1-.6-.5-1-1.1-1\"></path><path d=\"m108.7 106.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5m0 11c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2.1 4.5-4.5 4.5\"></path><path d=\"m69.9 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.5 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 47.8h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 58.6h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.2c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.5 2.4 2.5m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m99 58.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.4 1.1 2.4 2.4 2.4m-.4-6.5c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m69.9 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m84.2 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path><path d=\"m98.7 69.3h6.1c1.3 0 2.4-1.1 2.4-2.4v-4.1c0-1.3-1.1-2.4-2.4-2.4h-6.1c-1.3 0-2.4 1.1-2.4 2.4v4.1c0 1.3 1.1 2.4 2.4 2.4m-.4-6.6c0-.2.2-.4.4-.4h6.1c.2 0 .4.2.4.4v4.1c0 .2-.2.4-.4.4h-6.1c-.2 0-.4-.2-.4-.4z\"></path></g></svg>									\n					<h6>\n						Transportation to appointments					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" viewBox=\"0 0 160 160\"><g fill=\"rgb(0,0,0)\"><path d=\"m51.471 78.518c.029.549.464 1.03 1.009 1.11.02.003.038.01.058.012 5.747.577 11.331 2.607 16.147 5.87.204.138.435.204.665.204.381 0 .754-.183.984-.522.368-.542.226-1.28-.317-1.648-4.842-3.281-10.415-5.376-16.173-6.125v-4.869c5.876-.661 11.026-4.732 12.834-10.609 1.159.041 2.297-.264 3.3-.889 1.335-.831 2.266-2.132 2.622-3.664.592-2.548-.54-5.134-2.817-6.436-.071-.041-.146-.074-.225-.099-7.244-2.338-12.642-8.437-14.086-15.918-.1-.516-.527-.905-1.05-.957-.527-.053-1.018.248-1.216.735-2.117 5.218-7.123 8.834-12.763 9.213-.625.047-1.261.048-1.947.003-.119-.008-.239.003-.356.031-2.191.53-3.868 2.217-4.375 4.402-.653 2.809.833 5.624 3.389 6.732-.575 3.609.16 7.263 2.111 10.397 1.214 1.949 2.826 3.55 4.704 4.752v7.163c-3.645.472-7.189 1.472-10.548 2.99-3.734 1.688-6.147 5.484-6.147 9.672v9.305c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.305c0-3.257 1.865-6.205 4.75-7.509 3.451-1.56 7.11-2.542 10.876-2.921.02-.002.038-.009.058-.012 1.503-.223 1.01-2.948 1.01-3.968 0-1.393 0-2.785 0-4.178.766.316 1.556.587 2.379.778.919.214 1.837.335 2.747.376v5.823c.001.022.002.041.003.061zm-10.191-14.28c-1.809-2.906-2.379-6.342-1.604-9.676.071-.307.018-.629-.149-.896s-.432-.457-.739-.529l-.085-.019c-1.887-.439-3.065-2.331-2.627-4.217.291-1.253 1.227-2.231 2.461-2.589.724.039 1.406.034 2.073-.016 5.462-.366 10.417-3.361 13.33-7.873 2.322 6.88 7.757 12.345 14.759 14.65 1.295.794 1.93 2.298 1.586 3.779-.213.914-.768 1.69-1.564 2.186-.797.496-1.737.653-2.652.44-.306-.071-.629-.018-.896.149-.267.166-.457.432-.529.739-1.6 6.884-8.499 11.185-15.387 9.583-3.334-.776-6.167-2.804-7.977-5.711z\"></path><path d=\"m27.099 66.091 9.503 2.208c.09.021.18.031.27.031.539 0 1.028-.37 1.155-.918.148-.639-.249-1.276-.887-1.425l-8.347-1.939 6.259-26.942c2.459-10.552 13.713-16.983 25.083-14.337 5.527 1.283 10.254 4.49 13.312 9.029 3.039 4.513 4.061 9.804 2.877 14.899l-3.708 15.967c-1.813 2.49-2.661 5.479-2.433 8.517-.987.392-1.795 1.083-2.364 1.934l-6.134-1.422c-.641-.148-1.276.25-1.425.888-.148.639.25 1.277.888 1.424l5.847 1.356c-.051.443-.062.896.01 1.358.377 2.402 2.38 4.153 4.755 4.298.714 2.963 2.438 5.55 4.928 7.365 1.598 1.165 3.402 1.924 5.292 2.265v2.142c-3.539.58-6.949 1.929-9.917 3.949-.542.369-.682 1.107-.314 1.649.23.337.603.519.983.519.23 0 .462-.067.666-.206 1.707-1.161 3.576-2.082 5.535-2.732 3.089-1.026 5.42-.627 5.42-2.158v-2.958c.634-.005 1.273-.054 1.911-.154.502-.079.992-.194 1.475-.328 0 1.145-.735 4.332.998 4.608.016.003.031.008.048.01 3.537.423 6.963 1.707 9.91 3.711.204.139.437.206.666.206.38 0 .753-.182.983-.519.369-.542.228-1.28-.314-1.649-2.967-2.02-6.377-3.368-9.917-3.949v-3.342c1.784-.907 3.347-2.219 4.561-3.884.695-.954 1.246-1.981 1.651-3.056 4.212-2.622 8.838-4.301 13.765-4.976.01-.001.019-.005.029-.007.552-.09.998-.605.998-1.168v-4.615c.348.024.697.044 1.05.044 1.003 0 2.022-.1 3.042-.308 1.254-.256 2.431-.675 3.535-1.206 0 1.441-.016 5.431 0 5.985.018.619.378 1.179 1.026 1.276 3.302.452 6.516 1.371 9.556 2.731 2.954 1.322 4.863 4.292 4.863 7.567v9.889c0 .656.531 1.187 1.187 1.187s1.187-.531 1.187-1.187v-9.889c0-4.209-2.46-8.03-6.267-9.733-2.93-1.311-6.013-2.234-9.177-2.757v-6.491c4.369-3.2 6.858-8.607 6.116-14.233 1.067-.445 1.978-1.197 2.63-2.183.867-1.312 1.171-2.883.857-4.423-.324-1.587-1.254-2.914-2.534-3.75.996-3.741.274-8.168.233-8.407-1.074-5.263-4.134-9.794-8.616-12.756-4.481-2.962-9.849-4.002-15.112-2.928-5.264 1.074-9.794 4.134-12.756 8.616s-4.002 9.848-2.928 15.112c.034.167.825 3.925 3.39 7.861-.757 1.247-1.045 2.741-.742 4.225.315 1.54 1.21 2.866 2.522 3.733 1.012.669 2.181 1.003 3.364.977 1.526 5.46 5.931 9.461 11.2 10.69v3.965c-4.112.678-8.021 2.012-11.665 3.983.078-.756.091-1.522.033-2.292.883-.352 1.651-.946 2.225-1.733.803-1.102 1.129-2.451.918-3.799-.211-1.347-.934-2.531-2.037-3.335-.787-.574-1.7-.904-2.648-.969-.715-2.964-2.445-5.552-4.948-7.369-2.787-2.023-6.195-2.844-9.593-2.311-1.925.302-3.71 1.031-5.271 2.101l2.877-12.388c1.335-5.745.191-11.697-3.22-16.762-3.394-5.04-8.63-8.597-14.743-10.015-12.644-2.943-25.177 4.284-27.933 16.112l-6.528 28.099c-.071.306-.018.629.149.896.167.265.433.455.74.526zm66.819-35.999c2.613-3.953 6.608-6.651 11.25-7.599 4.641-.947 9.376-.031 13.328 2.582 3.953 2.613 6.651 6.608 7.591 11.21.007.043.638 3.936-.131 7.12-.135-.023-.264-.059-.402-.073-.862-.151-15.628-2.819-19.758-8.599-.206-.288-.53-.469-.883-.494-.358-.025-.699.109-.943.366-4.674 4.912-7.102 9.104-8.543 14.801-.414.207-.849.398-1.317.576-.006.002-.011.007-.018.01-2.076-3.376-2.752-6.537-2.759-6.571-.945-4.643-.028-9.376 2.585-13.329zm5.695 29.062c-.063-.309-.246-.579-.509-.753-.476-.314-1.055-.098-1.599-.084-.714.018-1.422-.189-2.017-.583-.783-.517-1.318-1.309-1.505-2.227-.257-1.26.185-2.539 1.158-3.379.674-.266 1.293-.556 1.887-.883.292-.162.503-.439.58-.763 1.242-5.207 3.227-8.912 7.175-13.265 5.629 5.912 19.781 8.356 20.415 8.463.029.005.058.008.087.011.372.035.724.129 1.08.277 1.027.446 1.795 1.365 2.029 2.515.188.92.006 1.857-.511 2.64-.518.783-1.309 1.317-2.228 1.505-.309.063-.579.246-.753.508-.173.263-.236.583-.173.892 1.175 5.759-1.864 11.758-7.208 14.212-5.557 2.552-12.323.71-15.839-4.281-1.011-1.437-1.717-3.082-2.069-4.805zm-18.216.713c5.736-.898 11.137 3.022 12.034 8.742.049.311.219.59.473.775s.571.263.883.214c.72-.112 1.443.061 2.032.491.59.43.977 1.064 1.09 1.785s-.061 1.443-.491 2.032c-.43.59-1.064.977-1.785 1.09-.311.049-.59.219-.775.473s-.262.572-.214.883c.434 2.771-.236 5.545-1.889 7.811-1.652 2.266-4.088 3.754-6.859 4.188-4.005.239-6.522-.949-7.811-1.889-2.266-1.652-3.754-4.088-4.188-6.859-.049-.311-.254-.584-.508-.77-.203-.148-.467-.223-.724-.223-.066 0-.131.005-.194.015-1.484.233-2.889-.788-3.122-2.276s.803-2.892 2.311-3.128c.311-.049.59-.219.775-.473s.262-.572.214-.883c-.434-2.771.236-5.545 1.889-7.811 1.653-2.265 4.088-3.753 6.859-4.187z\"></path><path d=\"m12.74 140.072 88.654.173h.03c2.484 0 4.942-.624 7.105-1.802l35.197-19.024c2.012-.84 3.574-2.498 4.293-4.56.724-2.078.516-4.378-.572-6.31-1.879-3.341-6.08-4.734-9.769-3.242-.034.014-.068.029-.101.046l-26.753 13.842c-1.271-2.627-4.063-4.425-7.129-4.431l-23.319-.046c-2.618-.005-5.144-.741-7.306-2.13-3.911-2.494-8.371-4.804-14.476-4.816-.009 0-.018 0-.027 0-5.763 0-11.294 3.617-14.439 9.447-1.108 2.059-3.207 3.337-5.48 3.337-.004 0-.008 0-.012 0l-6.495-.013.023-11.635c.001-.656-.529-1.188-1.185-1.189l-18.176-.036c-.001 0-.002 0-.002 0-.314 0-.615.124-.838.346-.223.223-.349.524-.349.839l-.059 30.016c-.001.314.124.617.346.84.223.221.524.347.839.348zm25.892-17.143h.016c3.147 0 6.047-1.756 7.57-4.584 2.688-4.983 7.534-8.199 12.351-8.199h.022c5.192.01 9.033 1.783 13.2 4.441 2.542 1.633 5.509 2.499 8.582 2.505l23.319.046c4.825.01 7.197 5.596 4.075 8.925-1.012 1.08-2.383 1.673-3.862 1.673-.003 0-.007 0-.011 0l-30.959-.06c-.001 0-.002 0-.002 0-.655 0-1.186.53-1.187 1.185s.529 1.188 1.185 1.189l30.959.06h.015c2.111 0 4.149-.882 5.594-2.423 1.468-1.565 2.198-3.61 2.057-5.755-.009-.14-.03-.279-.047-.418l27.11-14.026c2.576-1.015 5.474-.064 6.761 2.225.765 1.359.907 2.909.399 4.365-.502 1.439-1.599 2.594-3.009 3.169-.04.016-.079.034-.117.055l-35.255 19.055c-1.827.995-3.872 1.498-5.998 1.515l-69.291-.136.029-14.82zm-24.646-12.871 15.802.031-.054 27.642-15.802-.031z\"></path></g></svg>									\n					<h6>\n						Respite care for family caregivers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 48 48\" width=\"512\"><g><path d=\"m13.5 7.5c-4.14 0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5 7.5-3.36 7.5-7.5-3.36-7.5-7.5-7.5zm0 14c-3.58 0-6.5-2.92-6.5-6.5s2.92-6.5 6.5-6.5 6.5 2.92 6.5 6.5-2.92 6.5-6.5 6.5z\"></path><path d=\"m3.5 40.5h20c.28 0 .5-.22.5-.5v-6c0-5.79-4.71-10.5-10.5-10.5s-10.5 4.71-10.5 10.5v6c0 .28.22.5.5.5zm.5-6.5c0-5.24 4.26-9.5 9.5-9.5s9.5 4.26 9.5 9.5v5.5h-19z\"></path><path d=\"m44.5 17.5h-2.96l2.1-2.1c.2-.2.2-.51 0-.71l-2.83-2.83c-.2-.2-.51-.2-.71 0l-2.1 2.1v-2.96c0-.28-.22-.5-.5-.5h-4c-.28 0-.5.22-.5.5v2.96l-2.1-2.1c-.2-.2-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71l2.1 2.1h-2.96c-.28 0-.5.22-.5.5v4c0 .28.22.5.5.5h2.96l-2.1 2.1c-.2.2-.2.51 0 .71l2.83 2.83c.19.19.52.19.71 0l2.1-2.1v2.96c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5v-2.96l2.1 2.1c.09.09.22.15.35.15s.26-.05.35-.15l2.83-2.83c.2-.2.2-.51 0-.71l-2.1-2.1h2.96c.28 0 .5-.22.5-.5v-4c.01-.28-.21-.5-.49-.5zm-.5 4h-3.67c-.2 0-.38.12-.46.31s-.03.4.11.54l2.6 2.6-2.12 2.12-2.6-2.6c-.14-.14-.36-.19-.54-.11-.2.08-.32.27-.32.47v3.67h-3v-3.67c0-.2-.12-.38-.31-.46s-.4-.03-.54.11l-2.6 2.6-2.12-2.12 2.6-2.6c.14-.14.19-.36.11-.54-.08-.19-.26-.31-.46-.31h-3.68v-3h3.67c.2 0 .38-.12.46-.31s.03-.4-.11-.54l-2.6-2.6 2.12-2.12 2.6 2.6c.14.14.36.19.54.11.19-.08.31-.26.31-.46v-3.69h3v3.67c0 .2.12.38.31.46s.4.04.54-.11l2.6-2.6 2.12 2.12-2.6 2.6c-.14.14-.19.36-.11.54.08.19.26.31.46.31h3.69z\"></path><path d=\"m35.5 16.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 6c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"></path></g></svg>									\n					<h6>\n						Additional personalized services based on individual needs					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 66 66\"><g><path d=\"m60.62 23.63c-1.37-1.35-3.01-2.54-4.89-3.54v-2.38h.72c.95 0 1.72-.77 1.72-1.72v-2.99c0-.95-.77-1.72-1.72-1.72h-2.13v-2.3h1.93c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-12.14c-.88 0-1.73.32-2.4.91l-2.46 2.18c-.43.39-.7.94-.73 1.53-.04.59.16 1.17.56 1.61.39.45.94.71 1.53.75h.14c.54 0 1.06-.2 1.47-.56l2.22-1.97h4.4v2.3h-2.14c-.95 0-1.72.77-1.72 1.72v2.99c0 .95.77 1.72 1.72 1.72h.72v2.38c-1.88 1-3.53 2.19-4.89 3.54-2.22 2.19-3.49 5.33-3.49 8.61v7.13c-.66-.15-1.33-.24-2.03-.24h-1.3c.19-.31.31-.67.31-1.05v-10.47c0-1.12-.91-2.03-2.03-2.03h-.49c.04-.77-.22-1.55-.8-2.14-.15-.16-.32-.29-.5-.41.06-.81-.23-1.62-.8-2.21-.59-.61-1.4-.93-2.24-.88-.01-.02-.02-.03-.03-.05-.07-.12-.15-.24-.23-.36-.02-.03-.05-.07-.07-.1-.11-.13-.22-.26-.34-.39-.71-.69-1.64-1.05-2.64-1.04-.99.02-1.92.42-2.6 1.13-1.05 1.09-1.33 2.66-.76 4.01-.02.01-.03.02-.04.02-.11.04-.21.09-.31.15-.05.03-.11.05-.16.08-.14.09-.28.19-.41.31 0 0-.01 0-.01.01-.49.47-.77 1.1-.78 1.78 0 .03.01.06.01.09h-4.11c-1.12 0-2.03.91-2.03 2.03v10.47c0 1.09.87 1.98 1.96 2.02-.14.11-.28.23-.41.36-.85.85-1.34 2.02-1.34 3.21 0 1.45.68 2.74 1.74 3.58h-7.58c-3.93 0-7.12 3.2-7.12 7.12s3.2 7.12 7.12 7.12h50.91c2.31 0 4.19-1.88 4.19-4.19v-3.36-18.25-3.45c-.01-3.28-1.28-6.41-3.5-8.6zm-16.56-15.62-2.49 2.21c-.25.22-.58.34-.91.31-.34-.02-.64-.17-.87-.42-.46-.52-.41-1.32.11-1.78l2.46-2.18c.48-.43 1.11-.67 1.75-.67h12.14c.69 0 1.26.56 1.26 1.26s-.56 1.26-1.26 1.26h-12.19zm9.29.97v2.3h-3.55v-2.3zm9.79 32.32h-7.99c-.27 0-.48.22-.48.48s.22.48.48.48h7.99v3.33h-3.22c-.27 0-.48.22-.48.48s.22.48.48.48h3.22v6.89h-12.13v-17.27h12.13zm-17.19-25.31v-2.99c0-.41.34-.75.75-.75h9.75c.41 0 .75.34.75.75v2.99c0 .41-.34.75-.75.75h-9.75c-.41 0-.75-.34-.75-.75zm-22.01 3.8c.51-.53 1.19-.82 1.92-.83.72-.01 1.42.26 1.95.77.12.12.23.25.33.39.01.02.02.03.03.05.09.14.18.29.24.45.19.44.27.93.2 1.43-.03.27.15.51.42.54h.06c.24 0 .45-.18.48-.42.05-.43.03-.86-.06-1.26.44.05.86.24 1.18.57.43.45.62 1.09.5 1.7-.04.21.06.43.26.53s.38.23.54.39c.73.77.71 1.98-.05 2.72-.37.36-.86.54-1.37.54-.51-.01-.99-.22-1.35-.59-.07-.07-.14-.16-.2-.24-.09-.14-.25-.21-.42-.21-.17.01-.32.1-.4.24s-.18.26-.3.38c-.71.68-1.84.66-2.53-.05-.07-.07-.12-.14-.18-.22-.08-.12-.22-.19-.36-.2-.01 0-.02 0-.03 0-.13 0-.26.05-.35.15l-.06.06c-.3.29-.7.45-1.12.44s-.81-.18-1.11-.48c-.29-.3-.45-.7-.44-1.12s.18-.81.48-1.1c0 0 .01-.01.02-.01.07-.06.14-.12.21-.17.06-.04.13-.07.2-.11.02-.01.03-.02.05-.03.07-.03.13-.05.2-.07.03-.01.05-.02.08-.02.06-.01.11-.02.17-.02.07-.01.13-.02.2-.01.42.01.81.18 1.1.48.1.1.22.15.35.15.12 0 .24-.04.34-.13.19-.19.2-.49.01-.69-.44-.46-1.02-.72-1.65-.77-.54-1.07-.38-2.35.46-3.23zm-7.27 19.33c-.58 0-1.06-.47-1.06-1.05v-10.47c0-.58.47-1.06 1.06-1.06h4.32c.12.28.28.53.5.76.47.49 1.1.77 1.78.78.55.01 1.07-.15 1.5-.45.53.51 1.22.76 1.91.76s1.38-.25 1.91-.77c.02-.02.04-.04.07-.07.52.48 1.19.75 1.91.77.76.01 1.5-.27 2.06-.81.3-.28.52-.62.66-.98h.69c.58 0 1.06.47 1.06 1.06v10.47c0 .58-.47 1.05-1.06 1.05h-17.31zm7.73 8.11h-2.8v-7.14h2.8zm-8.57-3.58c0-.94.38-1.86 1.05-2.52.67-.67 1.57-1.04 2.52-1.04h1.22v7.14h-1.22c-1.96 0-3.57-1.61-3.57-3.58zm-12.97 10.7c0-3.39 2.76-6.16 6.16-6.16h27.32c1.23 0 2.23-1 2.23-2.23s-1-2.23-2.23-2.23h-5.15c-.27 0-.48.22-.48.48s.22.48.48.48h5.15c.7 0 1.26.57 1.26 1.26 0 .7-.57 1.26-1.26 1.26h-10.97v-7.14h8.61 3.02c4.08 0 7.55 3.02 7.9 6.88.2 2.18-.5 4.27-1.96 5.87-1.44 1.58-3.49 2.48-5.63 2.48h-27.41c-.7 0-1.28-.57-1.28-1.28 0-.7.57-1.28 1.28-1.28h3.21c.27 0 .48-.22.48-.48 0-.27-.22-.48-.48-.48h-3.21c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25h27.41 2.64v4.22h-30.93c-3.4.01-6.16-2.75-6.16-6.15zm38.06 6.16v-4.22h2.8v4.22zm4.22 0h-.44v-4.22h.99c.65 0 1.26.3 1.66.81.4.52.54 1.19.38 1.85-.22.9-1.13 1.56-2.14 1.56zm14.78 0h-12.01c.36-.37.63-.82.75-1.33.24-.95.03-1.93-.55-2.68-.59-.75-1.47-1.18-2.43-1.18h-1.48-2.93c.89-.46 1.7-1.08 2.38-1.83 1.65-1.8 2.43-4.15 2.21-6.61-.31-3.36-2.69-6.15-5.87-7.25v-7.4c0-3.02 1.17-5.91 3.2-7.92 1.36-1.34 3.01-2.52 4.92-3.5.16-.08.26-.25.26-.43v-2.68h6.38v2.68c0 .18.1.35.26.43 1.9.98 3.56 2.16 4.92 3.5 2.03 2.01 3.2 4.89 3.2 7.92v2.96h-12.6c-.27 0-.48.22-.48.48v18.25c0 .27.22.48.48.48h12.61v2.87c0 1.8-1.44 3.24-3.22 3.24z\"></path><path d=\"m44.03 28.6c-.25-.1-.53.02-.63.26-.44 1.06-.66 2.2-.66 3.37 0 .27.22.48.48.48s.48-.22.48-.48c0-1.04.2-2.07.59-3 .1-.25-.01-.53-.26-.63z\"></path><path d=\"m45.12 26.26c-.23.22-.44.47-.64.72-.16.21-.13.52.08.68.09.07.19.1.3.1.14 0 .29-.06.38-.19.17-.22.36-.43.56-.63.19-.19.19-.5 0-.69-.18-.18-.49-.18-.68.01z\"></path><path d=\"m56.71 46.56h1.39c.27 0 .48-.22.48-.48s-.22-.48-.48-.48h-1.39c-.27 0-.48.22-.48.48s.21.48.48.48z\"></path><path d=\"m23.82 21.65c.22.13.64-.19.94-.7s.36-1.04.13-1.16c-.22-.13-.64.19-.94.7-.29.51-.35 1.03-.13 1.16z\"></path><path d=\"m29.35 15.45c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4-2.4 1.08-2.4 2.4 1.07 2.4 2.4 2.4zm0-3.83c.79 0 1.43.64 1.43 1.43s-.64 1.43-1.43 1.43-1.43-.64-1.43-1.43.64-1.43 1.43-1.43z\"></path><path d=\"m33.65 17.43c.87 0 1.57-.71 1.57-1.57 0-.87-.71-1.57-1.57-1.57-.87 0-1.57.71-1.57 1.57 0 .87.7 1.57 1.57 1.57zm0-2.17c.33 0 .6.27.6.6s-.27.6-.6.6-.6-.27-.6-.6.27-.6.6-.6z\"></path><path d=\"m32.89 34.53v-3.39c0-.78-.63-1.41-1.41-1.41h-12.13c-.78 0-1.41.63-1.41 1.41v3.39c0 .78.63 1.41 1.41 1.41h12.13c.78-.01 1.41-.64 1.41-1.41zm-13.98 0v-3.39c0-.24.2-.44.44-.44h12.13c.24 0 .44.2.44.44v3.39c0 .25-.19.44-.44.44h-12.13c-.24 0-.44-.2-.44-.44z\"></path></g></svg>									\n					<h6>\n						Personal hygiene assistance, including bathing and dressing					</h6>\n							<h6>Payment Options</h6>					<h2>Essie\'s Loving Touch  accepts</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Private Pay\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Texas Medicaid (eligible programs)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M18.7 7.2c-.4-.4-1-.4-1.4 0l-7.5 7.5-3.1-3.1c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.8 3.8c.2.2.4.3.7.3s.5-.1.7-.3l8.2-8.2c.4-.4.4-1 0-1.4z\" fill=\"#FFFFFF\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>						\n										Long-Term Care (LTC) Insurance Plans\n									</li>\n						</ul>\n				Our goal is to provide exceptional, reliable care that allows your loved ones to remain confident, comfortable, and independent in their own homes. At Essie\'s Loving Touch, we don\'t just provide services—we build meaningful relationships and treat every client like family.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/Payment-Options.jpeg\" alt=\"\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/essie/wp-content/uploads/2026/07/2150216370-1.jpg\" alt=\"\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" viewBox=\"0 0 64 64\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><g><path d=\"M11.322 23.269a4.155 4.155 0 0 0-2.568 3.856V57.19a4.816 4.816 0 0 0 4.81 4.81h36.872a4.816 4.816 0 0 0 4.81-4.81V27.125a4.16 4.16 0 0 0-2.58-3.855l-10.361-4.303V13.88h.937a2.753 2.753 0 0 0 2.756-2.744v-6.38A2.759 2.759 0 0 0 43.242 2H20.745a2.752 2.752 0 0 0-2.743 2.756v6.38a2.746 2.746 0 0 0 2.743 2.744h.938v5.087l-10.36 4.302zm8.679-12.132V4.756A.75.75 0 0 1 20.744 4h22.498c.417 0 .756.339.756.756v6.38a.76.76 0 0 1-.756.744H20.745a.744.744 0 0 1-.743-.744zm20.304 2.744v5.754c0 .404.243.769.617.923l10.979 4.56a2.165 2.165 0 0 1 1.345 2.007V57.19a2.814 2.814 0 0 1-2.81 2.81H13.564a2.814 2.814 0 0 1-2.81-2.81V27.125c0-.885.523-1.673 1.333-2.008l10.978-4.559a.999.999 0 0 0 .617-.923v-5.754z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M24.871 33.894h3.327v3.327a1 1 0 0 0 1 1h5.604a1 1 0 0 0 1-1v-3.327h3.327a1 1 0 0 0 1-1V27.29a1 1 0 0 0-1-1h-3.327v-3.327a1 1 0 0 0-1-1h-5.604a1 1 0 0 0-1 1v3.327h-3.327a1 1 0 0 0-1 1v5.604a1 1 0 0 0 1 1zm1-5.604h3.327a1 1 0 0 0 1-1v-3.327h3.604v3.327a1 1 0 0 0 1 1h3.327v3.604h-3.327a1 1 0 0 0-1 1v3.327h-3.604v-3.327a1 1 0 0 0-1-1h-3.327zM15.903 41.981v13.826a1 1 0 0 0 1 1h30.193a1 1 0 0 0 1-1V41.981a1 1 0 0 0-1-1H16.903a1 1 0 0 0-1 1zm2 1h28.193v11.826H17.903z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path><path d=\"M41.871 45.844H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2zM41.871 49.944H22.129a1 1 0 0 0 0 2h19.742a1 1 0 0 0 0-2z\" fill=\"#FECE00\" opacity=\"1\" data-original=\"#000000\"></path></g></svg>				\n									<h6>\n							Making Every Touch Loving						\n					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 20:17:55', '2026-07-13 20:17:55', '', 10, 'https://mrarif.me/essie/?p=613', 0, 'revision', '', 0);

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

--
-- Table structure for table `wpe_termmeta`
--

CREATE TABLE `wpe_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 `wpe_terms`
--

CREATE TABLE `wpe_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 `wpe_terms`
--

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

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

--
-- Table structure for table `wpe_term_relationships`
--

CREATE TABLE `wpe_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 `wpe_term_relationships`
--

INSERT INTO `wpe_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(18, 2, 0),
(507, 2, 0),
(505, 2, 0),
(506, 2, 0),
(136, 4, 0),
(40, 3, 0),
(149, 4, 0),
(482, 5, 0),
(533, 4, 0);

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

--
-- Table structure for table `wpe_term_taxonomy`
--

CREATE TABLE `wpe_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 `wpe_term_taxonomy`
--

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

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

--
-- Table structure for table `wpe_usermeta`
--

CREATE TABLE `wpe_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 `wpe_usermeta`
--

INSERT INTO `wpe_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', 'modern'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpe_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpe_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:4:{s:64:\"008db56e89d25266ad911be96b515001f7bdfe53e723c61fd6da6ac99066c845\";a:4:{s:10:\"expiration\";i:1784979839;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/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783770239;}s:64:\"13379302b7acc181ed3e099c5b6a9e8c081dcdaa81ac5055bb0ddf6e2b4a22c1\";a:4:{s:10:\"expiration\";i:1784979840;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/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783770240;}s:64:\"903e321fa71964a94a6b163414a3feb18e1201ce59d882007a5d931b4f08271a\";a:4:{s:10:\"expiration\";i:1784110775;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/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1783937975;}s:64:\"38abf292f720a740669f59c7bc5c728a040a4d750ef7ae7b90aecfc752ecdc60\";a:4:{s:10:\"expiration\";i:1784144583;s:2:\"ip\";s:13:\"45.120.99.248\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1783971783;}}'),
(17, 1, 'wpe_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:2:{s:24:\"conversion_banner_go_pro\";b:1;s:20:\"globals_introduction\";b:1;}'),
(20, 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\";}'),
(21, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(22, 1, 'nav_menu_recently_edited', '2'),
(23, 1, 'wpe_elementor_connect_common_data', 'a:6:{s:9:\"client_id\";s:32:\"p8I21JBCfYBl6d8vRhyqi6pBGZfKfKmk\";s:11:\"auth_secret\";s:32:\"3JOwvGSxMCzZO3vXduMGAtTloCRC1wrq\";s:12:\"access_token\";s:292:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9lc3NpZS8iLCJjbGllbnRfaWQiOiJwOEkyMUpCQ2ZZQmw2ZDh2Umh5cWk2cEJHWmZLZkttayIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzgzNzQ4NzY5LCJleHAiOjMxNzMyODE5MTE2OX0.2E4CDHl4OCZbcOxwKJGsAZ-q7SsIi87yVrI2Ww4nuUc\";s:19:\"access_token_secret\";s:32:\"o9TjQMM6Txu51HYWoLXkg4PQObmGRHFv\";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\";}}'),
(24, 1, 'wpe_user-settings', 'editor=tinymce&libraryContent=browse'),
(25, 1, 'wpe_user-settings-time', '1783772357');

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

--
-- Table structure for table `wpe_users`
--

CREATE TABLE `wpe_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 `wpe_users`
--

INSERT INTO `wpe_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$bzY1U.N14.VEOFmsWrqks.RC0Sa/vol/VhUOaZwLJUBa9gc4LhW0i', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/essie', '2026-07-11 05:37:19', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

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

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

--
-- Indexes for table `wpe_e_notes`
--
ALTER TABLE `wpe_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 `wpe_e_notes_users_relations`
--
ALTER TABLE `wpe_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 `wpe_e_submissions`
--
ALTER TABLE `wpe_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 `wpe_e_submissions_actions_log`
--
ALTER TABLE `wpe_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 `wpe_e_submissions_values`
--
ALTER TABLE `wpe_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `wpe_users`
--
ALTER TABLE `wpe_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 */;
